gfan0.7/0000775000175000017500000000000014656430617011546 5ustar andersandersgfan0.7/Doxyfile0000644000175000017500000014524614656430617013266 0ustar andersanders# Doxyfile 1.5.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Gfan Source Code" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = 0.6 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = dox # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, # Italian, Japanese, Japanese-en (Japanese with English messages), Korean, # Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, # Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # This tag can be used to specify the encoding used in the generated output. # The encoding is not always determined by the language that is chosen, # but also whether or not the output is meant for Windows or non-Windows users. # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES # forces the Windows encoding (this is the default for the Windows binary), # whereas setting the tag to NO uses a Unix-style encoding (the default for # all platforms other than Windows). USE_WINDOWS_ENCODING = NO # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explicit @brief command for a brief description. JAVADOC_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for Java. # For instance, namespaces will be presented as packages, qualified scopes # will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to # include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = NO # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from the # version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = src # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES #CHANGED!!! # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will # generate a call dependency graph for every global function or class method. # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable call graphs for selected # functions only using the \callgraph command. CALL_GRAPH = YES #CHANGED! # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will # generate a caller dependency graph for every global function or class method. # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable caller graphs for selected # functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_WIDTH = 1024 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_HEIGHT = 1024 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that a graph may be further truncated if the graph's # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), # the graph is not depth-constrained. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, which results in a white background. # Warning: Depending on the platform used, enabling this option may lead to # badly anti-aliased labels on the edges of a graph (i.e. they become hard to # read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO gfan0.7/doc/0000775000175000017500000000000014656430617012313 5ustar andersandersgfan0.7/doc/using.tex0000644000175000017500000003522514656430617014167 0ustar andersanders\newpage \section{Using the software} In this section we will explain by examples how to use the software for the most common computations. \name consist of a set of subprograms with names like \texttt{gfan\_bases} and \texttt{gfan\_buchberger} each with a different purpose. See Appendix \ref{sec:dataformats} for an explanation of the data formats and Appendix~\ref{sec:applist} for a full list of the various functions and their help files. %\emph{In the %following we will assume that the software has been installed with %\texttt{make install} and that all subprograms have been installed %with \texttt{gfan installlinks} - see Section \ref{sec:installation}}. \subsection{Computing the Gr\"obner fan} The program \texttt{gfan\_bases} computes the set of reduced Gr\"obner bases of an ideal. To use it type in the name in the UNIX shell \footnote{It is actually much more convenient to use the Emacs shell. In Emacs press Meta-x and type \textup{shell}. When you are in the Emacs shell Ctrl-up will allow you to easily reinput old polynomial data to \name.} \begin{verbatim} gfan_bases \end{verbatim} and type in a polynomial ring followed by a set of generators for the ideal \begin{verbatim} Q[a,b,c] {aab-c,bbc-a,cca-b} \end{verbatim} For compatibility reasons the polynomial ring can be left out in which case the ring is assumed to be the polynomial ring over the rationals with variable names $a,b,c,\dots$. The program will output the polynomial ring and the list of reduced Gr\"obner bases of the input ideal. In this example there are 33 such bases. % You may want to filter the output through the UNIX %program \texttt{cat} to separate the debug information and the list of %Gr\"obner bases. Type the following to do this: %\begin{verbatim} %gfan | cat %\end{verbatim} %and type in the input as before. Often it is convenient to store your generators in a text file instead of typing them in every time you use the program. You can redirect the standard input for the program to read from a file instead of the keyboard. For example, if your ring and generators are stored in the file \texttt{myinputfile.txt} you would type: \begin{verbatim} gfan_bases myoutputfile.txt \end{verbatim} The list of reduced Gr\"obner bases can be transformed into a polyhedral representation of the Gr\"obner fan by using the program \texttt{gfan\_topolyhedralfan} as explained in Section~\ref{subsec:combining}. Here is another example of a polynomial ring and an ideal: \begin{verbatim} Z/3Z[x_1,x_2,x_3] {x_1^2x_2-x_3,x_2^2x_3-x_1,x_3^2x_1-x_2} \end{verbatim} \subsubsection{Exploiting symmetry} \label{sec:symmtry} As explained in Subsection \ref{subsec:global computations} the program can do its computations up to symmetry. In the example above we may cycle the three variables without changing the ideal. Hence the subgroup $G\subseteq S_n$ in Subsection \ref{subsec:global computations} is the group generated by a three cycle. A way to write down the subgroup is by writing a list of permutations that generate the subgroup: \begin{verbatim} {(0,1,2),(1,2,0)} \end{verbatim} The first permutation is the identity (which can be left out). The second permutation is three-cycle. Together they generate $G$. See Appendix~\ref{sec:dataformats} for more information on how to specify the permutations. The option \texttt{--symmetry} tells \texttt{gfan} to do its computations up to symmetry. For example, \begin{verbatim} gfan_bases --symmetry myoutputfile.txt %\end{verbatim} We need to use the option \texttt{-m} to tell \texttt{gfan\_leadingterms} that it should expect a list of Gr\"obner bases rather than a single Gr\"obner basis on its input. If we want the union of the Gr\"obner bases instead we should type: \begin{verbatim} gfan_bases myoutputfile.txt \end{verbatim} This will compute a \emph{universal Gr\"obner basis}. In three variables, if we want to draw staircase diagrams of the initial ideals we may use the program \texttt{gfan\_renderstaircase}: \begin{verbatim} gfan_bases --symmetry out.fig \end{verbatim} The output file is the xfig file in Figure \ref{fig:staircase}. To save paper we used the \texttt{--symmetry} option and gave the program the file also containing the group generators as input. \begin{figure} \begin{center} \epsfig{file=staircase.eps,height=4.5cm} \end{center} \caption{Staircase diagrams of the monomial initial ideals in the example - up to symmetry.} \label{fig:staircase} \end{figure} In three variables, if we want to draw the Gr\"obner fan - or rather draw the intersection of the $2$-dimensional standard simplex with the Gr\"obner fan we may use the program \texttt{gfan\_render}: \begin{verbatim} gfan_bases myoutputfile.fig \end{verbatim} The output is shown in Figure \ref{fig:gfan}. If there are more than three variables in the polynomial ring this program can still be used but it is more difficult. See Appendix~\ref{applist:_render}. \begin{figure} \begin{center} \epsfig{file=gfan.eps,height=5.9cm} \end{center} \caption{The Gr\"obner fan of the ideal intersected with the standard simplex.} \label{fig:gfan} \end{figure} \subsection{Interactive mode} To study the local structure of the Gr\"obner fan the program \texttt{gfan\_interactive} is useful. It allows the user to walk along an arbitrary path of full dimensional Gr\"obner cones in the Gr\"obner fan of the ideal. At each step the user will specify which facet to walk through. The input must be a marked Gr\"obner basis. The program will minimise and autoreduce if necessary to get the reduced Gr\"obner basis. For example running the program \begin{verbatim} gfan_interactive \end{verbatim} with input \begin{verbatim} Q[a,b,c] { c^15-c, b-c^11, a-c^9} \end{verbatim} will give us a list of facets to walk through. (One way to get a starting Gr\"obner basis is by using the program \texttt{gfan\_buchberger}.) In this case only two flips are possible, since the third wall does not lead to a new Gr\"obner cone. -- The wall is on the boundary of the Gr\"obner region. We may choose any of the two remaining facets by typing in an index (a number) followed by $<$ enter $>$. See Appendix \ref{applist:_interactive} for more options. %\subsection{Other useful programs} %We list a few more interesting programs in the package. The remaining programs can be found in Appendix \ref{sec:applist}. %\subsubsection{Computing a Gr\"obner cone} %The program \texttt{gfan\_groebnercone} extracts a defining set of half-spaces for a Gr\"obner cone. %The input is a Gr\"obner basis for the cone. The output is a list of vectors - each specifying a half-space. %For example we may compute the restricted Gr\"obner cone of the lexicographic basis above by running %\begin{verbatim} %gfan_groebnercone --restrict %\end{verbatim} %with the reduced Gr\"obner basis as input. % %\subsubsection{Computing the facets of a Gr\"obner cone} %The program \texttt{gfan\_facets} will take a list of vectors - each specifying a half-space whose intersection is a full-dimensional cone and compute a minimal set of defining half-spaces for the cone. Thus, we can compute the inner facet normals of the Gr\"obner cone above by running %\begin{verbatim} %gfan_groebnercone --restrict | gfan_facets %\end{verbatim} %with the reduced Gr\"obner basis as input. % %\subsubsection{Computing a weight vector} %The program \texttt{gfan\_weightvector} will compute a strictly positive interior point of a Gr\"obner cone given by its reduced Gr\"obner basis. In our example, if we run %\begin{verbatim} %gfan_weightvector %\end{verbatim} %on the lexicographic basis we (might) get the vector %\begin{verbatim} %(21,25,2) %\end{verbatim} \subsection{Integers and p-adics} Gfan handles two settings in which the usual division and Buchberger algorithms do not suffice. These are ideals in $\Z[x_1,\dots,x_n]$ and $\Q[x_1,\dots,x_n]$, where, in the latter setting, the $p$-adic valuation is taken into account when defining initial ideals. At the moment these two settings are handled by the commands \texttt{gfan\_overintegers} and \texttt{gfan\_padic}. They allow the computation of Gr\"obner bases, initial ideals, Gr\"obner cones (or polyhedra) and Gr\"obner fans (or complexes). In this section we give two examples. Use the \texttt{--help} option to get the full documentation. \begin{example} To compute the Gr\"obner fan of \cite[Example~3.9]{sturmfels}, with the ideal considered in the ring $\Z[a,b,c]$ we run the command \begin{verbatim} gfan_overintegers --groebnerFan -g --log1 \end{verbatim} on \begin{verbatim} Q[a,b,c] {a^5+b^3+c^2-1, b^2+a^2+c-1, c^3+a^6+b^5-1} \end{verbatim} Since the type-system of Gfan does not understand {\texttt Z[a,b,c]} we need to trick Gfan by specifying the ring $Q[a,b,c]$ when running {\texttt gfan\_overintegers}. From the output we conclude that the ideal has $1659$ reduced Gr\"obner bases over the integers (as opposed to $360$ over a field of characteristic $0$). \end{example} \begin{example} To compute the reduced Gr\"obner basis of $I=\langle x_1+2x_2-3x_3, 3x_2-4x_3+5x_4\rangle\subseteq \Q[x_1,\dots,x_4]$ with respect to the vector $(1,0,0,1)$ (tie-broken lexicographically) and with $\Q$ having the $2$-adic valuation, we run \begin{verbatim} gfan_padic --groebnerBasis -p2 \end{verbatim} on the input \begin{verbatim} Q[x1,x2,x3,x4] { x1+2x2-3x3, 3x2-4x3+5x4 } (1,1,0,0,1) \end{verbatim} The first coordinate of the input vector is a $1$, since {\texttt \_padic} requires ``homogenized'' weight vectors. This is Example 2.4.3 in ~\cite{tropicalbook}. The division algorithm implemented in Gfan used for this computation was proposed by Maclagan. To find all initial ideals, we can use a combination of \texttt{gfan\_padic --groebnerBasis}, \texttt{gfan\_combinerays --section CONES -i filename} and \texttt{gfan\_padic --initialIdeals -m}. Notice that the Gr\"obner complex of $I$, where valuation is taken into account (see Maclagan-Sturmfels), is not a fan. The output of \texttt{gfan\_padic --groebnerComplex}, however, will be a fan. To get the Gr\"obner complex we need to intersect the fan with the hyperplane $\omega_0=1$. NOTICE THAT \texttt{\_padic} USES THE MINIMUM CONVENTION AT THE MOMENT - in order to be consistent with Maclagan and Sturmfels. \end{example} \subsection{Toric ideals and secondary fans} Gfan is a replacement of the software CaTS \cite{cats} which computes Gr\"obner fans of toric and lattice ideals. For convenience a program for computing lattice ideals has been added to Gfan. To compute the lattice ideal of the lattice generated by $(2,-1,0)$ and $(3,0,-1)$ we run: \begin{verbatim} gfan_latticeideal {(2,-1,0),(3,0,-1)} \end{verbatim} Gfan will transform the generators into binomials and compute the saturation of the ideal they generate by the product of all variables. The computation is independent of the characteristic of the field. If on the other hand we wish to compute the toric ideal of a \emph{vector configuration} given by the columns of the $1\times 3$-matrix $(1,2,3)$ we run \begin{verbatim} gfan_latticeideal -t {(1,2,3)} \end{verbatim} More rows can be added to the matrix if we want. The choice of the term ``vector configuration'' is intentional and nonstandard. The reason for this will become clear later in this section. In Gfan terminology a \emph{point configuration} is reserved for the collection of points we have before we add a row of ones to construct a projective toric variety. By adding the row of ones the point configuration is turned into a vector configuration. Notice that scaling a vector of a vector configuration may change its toric ideal. Computing toric ideals Gfan is not optimal. If one needs to do big examples the software 4ti2 \cite{4ti2} is recommended. For a toric ideal the radical of a monomial initial ideal is the Stanley-Reisner ideal of a regular triangulation of the point configuration, see \cite{sturmfels}. Hence the toric Groebner fan is a refinement of the \emph{secondary fan}, indexing all regular triangulation of the point configuration. The secondary fan of the vector configuration $\{(1,0),(1,1),(1,2),(1,3)\}$ can be computed by typing \begin{verbatim} gfan_secondaryfan {(1,0),(1,1),(1,2),(1,3)} \end{verbatim} Comparing this to the finer Gr\"obner fan of the corresponding toric ideal which you get by doing \begin{footnotesize} \begin{verbatim} gfan_transposematrix | gfan_latticeideal -t | gfan_bases | gfan_topolyhedralfan {(1,0),(1,1),(1,2),(1,3)} \end{verbatim} \end{footnotesize} you realise that three monomial initial ideals of the toric ideal have the same radical, while four monomial initial ideals pairwise have the same radical. The secondary fan computation was added for convenience. %For any %serious computation with secondary fans you should use An alternative is to use TOPCOM \cite{rambau}. Notice however, that the vector configurations for gfan\_secondaryfan do not have to be pointed. This means that all combinatorial types of polytopes with a fixed set of normals can be easily enumerated. This is not possible with TOPCOM. gfan0.7/doc/manual.dvi0000644000175000017500000117643014656430617014306 0ustar andersanders; TeX output 2024.08.12:1714! systemdict /pdfmark known{userdict /?pdfmark systemdict /exec get put}{userdict /?pdfmark systemdict /pop get put userdict /pdfmark systemdict /cleartomark get put}ifelseps:SDict begin [/Producer (dvips + Distiller)/Title ()/Subject ()/Creator (LaTeX with hyperref)/Author ()/Keywords () /DOCINFO pdfmark end! /DvipsToPDF{72.27 mul Resolution div} def/PDFToDvips{72.27 div Resolution mul} def/BPToDvips{72 div Resolution mul}def product (Ghostscript) search {pop pop pop revision 927 gt}{pop false} ifelse{/BorderArrayPatch{} def}{/BorderArrayPatch{[exch{dup dup type/integertype eq exch type/realtype eq or{BPToDvips}if}forall]}def} ifelse /HyperBorder {1 PDFToDvips} def/H.V {pdf@hoff pdf@voff null} def/H.B {/Rect[pdf@llx pdf@lly pdf@urx pdf@ury]} def/H.S {currentpoint HyperBorder add /pdf@lly exch def dup DvipsToPDF 72 add /pdf@hoff exch def HyperBorder sub /pdf@llx exch def} def/H.L {2 sub dup/HyperBasePt exch def PDFToDvips /HyperBaseDvips exch def currentpoint HyperBaseDvips sub /pdf@ury exch def/pdf@urx exch def} def/H.A {H.L currentpoint exch pop vsize 72 sub exch DvipsToPDF HyperBasePt sub sub /pdf@voff exch def} def/H.R {currentpoint HyperBorder sub /pdf@ury exch def HyperBorder add /pdf@urx exch def currentpoint exch pop vsize 72 sub exch DvipsToPDF sub /pdf@voff exch def} def!papersize=597.50787pt,845.04684ptheader=l3backend-dvips.pro!papersize=597.50787pt,845.04684ptps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endDps:SDict begin [/View [/XYZ H.V]/Dest (page.1) cvn /DEST pdfmark end\t*color push BlackS color popt*Tps:SDict begin [/Count -3/Dest (section.1) cvn/Title (Introduction) /OUT pdfmark endkps:SDict begin [/Count -0/Dest (subsection.1.1) cvn/Title (The Gr\366bner fan of an ideal) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.1.2) cvn/Title (Gr\366bner bases) /OUT pdfmark endcps:SDict begin [/Count -2/Dest (subsection.1.3) cvn/Title (Algorithmic background) /OUT pdfmark enddps:SDict begin [/Count -0/Dest (subsubsection.1.3.1) cvn/Title (Local computations) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsubsection.1.3.2) cvn/Title (Global computations) /OUT pdfmark endTps:SDict begin [/Count -4/Dest (section.2) cvn/Title (Installation) /OUT pdfmark endlps:SDict begin [/Count -1/Dest (subsection.2.1) cvn/Title (Installation of the gmp library) /OUT pdfmark endps:SDict begin [/Count -0/Dest (subsubsection.2.1.1) cvn/Title (Installing the gmp library on Mac OS X using fink) /OUT pdfmark endops:SDict begin [/Count -0/Dest (subsection.2.2) cvn/Title (Installation of the cddlib library) /OUT pdfmark end^ps:SDict begin [/Count -0/Dest (subsection.2.3) cvn/Title (Gfan installation) /OUT pdfmark endrps:SDict begin [/Count -0/Dest (subsection.2.4) cvn/Title (SoPlex \(for the advanced user only\)) /OUT pdfmark endZps:SDict begin [/Count -5/Dest (section.3) cvn/Title (Using the software) /OUT pdfmark endips:SDict begin [/Count -1/Dest (subsection.3.1) cvn/Title (Computing the Gr\366bner fan) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsubsection.3.1.1) cvn/Title (Exploiting symmetry) /OUT pdfmark endcps:SDict begin [/Count -0/Dest (subsection.3.2) cvn/Title (Combining the programs) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.3.3) cvn/Title (Interactive mode) /OUT pdfmark endaps:SDict begin [/Count -0/Dest (subsection.3.4) cvn/Title (Integers and p-adics) /OUT pdfmark endlps:SDict begin [/Count -0/Dest (subsection.3.5) cvn/Title (Toric ideals and secondary fans) /OUT pdfmark endcps:SDict begin [/Count -7/Dest (section.4) cvn/Title (Doing tropical computations) /OUT pdfmark endlps:SDict begin [/Count -0/Dest (subsection.4.1) cvn/Title (Tropical variety by brute force) /OUT pdfmark endzps:SDict begin [/Count -0/Dest (subsection.4.2) cvn/Title (Traversing tropical varieties of prime ideals) /OUT pdfmark endps:SDict begin [/Count -0/Dest (subsection.4.3) cvn/Title (Intersecting tropical hypersurfaces \(partially deprecated\)) /OUT pdfmark endops:SDict begin [/Count -0/Dest (subsection.4.4) cvn/Title (Computing tropical bases of curves) /OUT pdfmark endips:SDict begin [/Count -0/Dest (subsection.4.5) cvn/Title (Tropical intersection theory) /OUT pdfmark endps:SDict begin [/Count -1/Dest (subsection.4.6) cvn/Title (Non-constant coefficients \(partially deprecated\)) /OUT pdfmark endqps:SDict begin [/Count -0/Dest (subsubsection.4.6.1) cvn/Title (Algebraic field extensions of Q) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.4.7) cvn/Title (Tropical prevarieties) /OUT pdfmark endUps:SDict begin [/Count -8/Dest (appendix.A) cvn/Title (Data formats) /OUT pdfmark endSps:SDict begin [/Count -0/Dest (subsection.A.1) cvn/Title (Fields) /OUT pdfmark endVps:SDict begin [/Count -0/Dest (subsection.A.2) cvn/Title (Variables) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.A.3) cvn/Title (Polynomial rings) /OUT pdfmark endXps:SDict begin [/Count -0/Dest (subsection.A.4) cvn/Title (Polynomials) /OUT pdfmark endRps:SDict begin [/Count -0/Dest (subsection.A.5) cvn/Title (Lists) /OUT pdfmark endYps:SDict begin [/Count -0/Dest (subsection.A.6) cvn/Title (Permutations) /OUT pdfmark end\ps:SDict begin [/Count -2/Dest (subsection.A.7) cvn/Title (Polyhedral fans) /OUT pdfmark end\ps:SDict begin [/Count -0/Dest (subsubsection.A.7.1) cvn/Title (Data types) /OUT pdfmark end\ps:SDict begin [/Count -0/Dest (subsubsection.A.7.2) cvn/Title (Properties) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.A.8) cvn/Title (Polyhedral cones) /OUT pdfmark endZps:SDict begin [/Count -55/Dest (appendix.B) cvn/Title (Application list) /OUT pdfmark endZps:SDict begin [/Count -0/Dest (subsection.B.1) cvn/Title (gfan\137bases) /OUT pdfmark end_ps:SDict begin [/Count -0/Dest (subsection.B.2) cvn/Title (gfan\137buchberger) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.3) cvn/Title (gfan\137combinerays) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsection.B.4) cvn/Title (gfan\137doesidealcontain) /OUT pdfmark endhps:SDict begin [/Count -0/Dest (subsection.B.5) cvn/Title (gfan\137fancommonrefinement) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.6) cvn/Title (gfan\137fanhomology) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.7) cvn/Title (gfan\137fanisbalanced) /OUT pdfmark end\ps:SDict begin [/Count -0/Dest (subsection.B.8) cvn/Title (gfan\137fanlink) /OUT pdfmark end_ps:SDict begin [/Count -0/Dest (subsection.B.9) cvn/Title (gfan\137fanproduct) /OUT pdfmark end_ps:SDict begin [/Count -0/Dest (subsection.B.10) cvn/Title (gfan\137fansubfan) /OUT pdfmark endips:SDict begin [/Count -0/Dest (subsection.B.11) cvn/Title (gfan\137genericlinearchange) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.12) cvn/Title (gfan\137groebnercone) /OUT pdfmark endaps:SDict begin [/Count -0/Dest (subsection.B.13) cvn/Title (gfan\137groebnerfan) /OUT pdfmark endfps:SDict begin [/Count -0/Dest (subsection.B.14) cvn/Title (gfan\137homogeneityspace) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.15) cvn/Title (gfan\137homogenize) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.16) cvn/Title (gfan\137initialforms) /OUT pdfmark endaps:SDict begin [/Count -0/Dest (subsection.B.17) cvn/Title (gfan\137interactive) /OUT pdfmark endkps:SDict begin [/Count -0/Dest (subsection.B.18) cvn/Title (gfan\137ismarkedgroebnerbasis) /OUT pdfmark enddps:SDict begin [/Count -0/Dest (subsection.B.19) cvn/Title (gfan\137krulldimension) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.20) cvn/Title (gfan\137latticeideal) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.21) cvn/Title (gfan\137leadingterms) /OUT pdfmark endZps:SDict begin [/Count -0/Dest (subsection.B.22) cvn/Title (gfan\137list) /OUT pdfmark endgps:SDict begin [/Count -0/Dest (subsection.B.23) cvn/Title (gfan\137markpolynomialset) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.24) cvn/Title (gfan\137minkowskisum) /OUT pdfmark end\ps:SDict begin [/Count -0/Dest (subsection.B.25) cvn/Title (gfan\137minors) /OUT pdfmark endaps:SDict begin [/Count -0/Dest (subsection.B.26) cvn/Title (gfan\137mixedvolume) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.27) cvn/Title (gfan\137overintegers) /OUT pdfmark end[ps:SDict begin [/Count -0/Dest (subsection.B.28) cvn/Title (gfan\137padic) /OUT pdfmark endhps:SDict begin [/Count -0/Dest (subsection.B.29) cvn/Title (gfan\137polynomialsetunion) /OUT pdfmark end\ps:SDict begin [/Count -0/Dest (subsection.B.30) cvn/Title (gfan\137render) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsection.B.31) cvn/Title (gfan\137renderstaircase) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.32) cvn/Title (gfan\137resultantfan) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.33) cvn/Title (gfan\137saturation) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.34) cvn/Title (gfan\137secondaryfan) /OUT pdfmark end[ps:SDict begin [/Count -0/Dest (subsection.B.35) cvn/Title (gfan\137stats) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.36) cvn/Title (gfan\137substitute) /OUT pdfmark end`ps:SDict begin [/Count -0/Dest (subsection.B.37) cvn/Title (gfan\137symmetries) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.B.38) cvn/Title (gfan\137tolatex) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsection.B.39) cvn/Title (gfan\137topolyhedralfan) /OUT pdfmark endcps:SDict begin [/Count -0/Dest (subsection.B.40) cvn/Title (gfan\137tropicalbasis) /OUT pdfmark endhps:SDict begin [/Count -0/Dest (subsection.B.41) cvn/Title (gfan\137tropicalbruteforce) /OUT pdfmark endcps:SDict begin [/Count -0/Dest (subsection.B.42) cvn/Title (gfan\137tropicalcurve) /OUT pdfmark endhps:SDict begin [/Count -0/Dest (subsection.B.43) cvn/Title (gfan\137tropicalevaluation) /OUT pdfmark endfps:SDict begin [/Count -0/Dest (subsection.B.44) cvn/Title (gfan\137tropicalfunction) /OUT pdfmark endjps:SDict begin [/Count -0/Dest (subsection.B.45) cvn/Title (gfan\137tropicalhypersurface) /OUT pdfmark endjps:SDict begin [/Count -0/Dest (subsection.B.46) cvn/Title (gfan\137tropicalintersection) /OUT pdfmark endeps:SDict begin [/Count -0/Dest (subsection.B.47) cvn/Title (gfan\137tropicallifting) /OUT pdfmark endips:SDict begin [/Count -0/Dest (subsection.B.48) cvn/Title (gfan\137tropicallinearspace) /OUT pdfmark endjps:SDict begin [/Count -0/Dest (subsection.B.49) cvn/Title (gfan\137tropicalmultiplicity) /OUT pdfmark endhps:SDict begin [/Count -0/Dest (subsection.B.50) cvn/Title (gfan\137tropicalprevariety) /OUT pdfmark endbps:SDict begin [/Count -0/Dest (subsection.B.51) cvn/Title (gfan\137tropicalrank) /OUT pdfmark endjps:SDict begin [/Count -0/Dest (subsection.B.52) cvn/Title (gfan\137tropicalstartingcone) /OUT pdfmark endfps:SDict begin [/Count -0/Dest (subsection.B.53) cvn/Title (gfan\137tropicaltraverse) /OUT pdfmark endips:SDict begin [/Count -0/Dest (subsection.B.54) cvn/Title (gfan\137tropicalweildivisor) /OUT pdfmark end]ps:SDict begin [/Count -0/Dest (subsection.B.55) cvn/Title (gfan\137version) /OUT pdfmark endNps:SDict begin [/PageMode /UseOutlines/Page 1/View [/Fit] /DOCVIEW pdfmark end/ps:SDict begin [ {Catalog}<<>> /PUT pdfmark endps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (Doc-Start) cvn /DEST pdfmark end<7acolor push Black color pop=]DtqGcmr17GfanBvuNersion0.7:mAUser'sManual#􍍍y3OXQ ff cmr12Anders/NedergaardJensen=,9 tcrm1000*-lAugust/12,202499color push Black color pop3"V 3 cmbx10AbstractMƍlcolor push Black color pop-̻2K`y 3 cmr10Gfan^is]asoft!warepackdDage^forcomputingGrfobnerfansandtropical _vdDarieties.TheseNarepMolyhedralfansOassociatedtopolynomialideals.The_maximalconesofaGrfobnerfanareinbijectionwiththemark!edreduced_Grfobnerbasesofitsde ningideal. Thesoft!warecomputesallmark!ed_reducedGrfobnerbasesofanideal.OTheirunionisauniv!ersalGrfobner_basis.F~ThetropicalvdDariet!yofapMolynomialidealisacertainsubMcomplex_oftheGrfobnerfan.Gfancon!tainsalgorithmsforcomputingthiscomplex_forgeneralidealsandspMecializedalgorithmsfortropicalcurv!es,tropical_h!ypMersurfaces qand ptropicalvdDarietiesofprimeideals. Inadditiontothe_abMo!veOcorefunctionsthepac!kdDagecontainsNmanytoMolswhichareusefulin_the%study&ofGrfobnerbases,initialidealsandtropicalgeometrye.Thefull_list5ofcommands5canbMefoundinAppendixps:SDict begin H.S endcolor push BlackB color pop|ps:SDict begin H.R end{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (appendix.B) cvn H.B /ANN pdfmark end.5FeorordinaryGrfobnerbasis_computationsGfanisnotcompMetitiv!einspeedcomparedtoprogramssuc!h_asfCoCoA,SingularandMacaula!y2.(Vps:SDict begin H.S endps:SDict begin 22 H.A endHps:SDict begin [/View [/XYZ H.V]/Dest (section*.1) cvn /DEST pdfmark end5NG cmbx12Conutentsb#ps:SDict begin H.S end6N cmbx121Intro`ductionps:SDict begin 14.5 H.L endzps:SDict begin [/Subtype /Link/Dest (section.1) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark end0S5ps:SDict begin H.S endXQ cmr121.1VTheGr obnerfanofanidealps:SDict begin 14.5 H.L endps:SDict begin [/Subtype /Link/Dest (subsection.1.1) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark end‰. C....................?color push Black6  color popps:SDict begin H.S end1.2VGr obnerbasesps:SDict begin 14.5 H.L endps:SDict begin [/Subtype /Link/Dest (subsection.1.2) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark endxm΍. C............................?color push Black7  color popps:SDict begin H.S end1.3VAlgorithmicbacrkgroundps:SDict begin 14.5 H.L endps:SDict begin [/Subtype /Link/Dest (subsection.1.3) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark end򍍑. C......................?color push Black8  color pop,Jps:SDict begin H.S end1.3.1%}LoScalcomputationsps:SDict begin 14.5 H.L endps:SDict begin [/Subtype /Link/Dest (subsubsection.1.3.1) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark endFx. C.....................?color push Black8  color pop,Jps:SDict begin H.S end1.3.2%}Globalcomputationsps:SDict begin 14.5 H.L endps:SDict begin [/Subtype /Link/Dest (subsubsection.1.3.2) cvn/H /I/Border [0 0 1]BorderArrayPatch/Color [1 0 0] H.B /ANN pdfmark end‰. C....................?color push Black9  color pop "!color push Blackffff џ^1tcrm0700*K`y cmr10ResearchbpartiallysuppGortedcbytheF*acultyofScience,&UniversityofAarhus,&DanishRe- searchtT*raininguCouncil(Forskeruddannelsesradet,0his>ithankfultothefollorwingpSeopleandinstitutionsforinitiallysuppSortingt*theXresearcrh:KomeiFVukudaandXHans-JakobLSvuthi(InstituteforXOperationsRe-t*searcrh,ETH%ZSvurich),DouglasLindandRekhaThomas&(UniversityofWVashing-t*ton,ESeattle)andtheAmericanInstituteofMathematics.#Theresearcrhhaslatert*bSeenGsupportedbryUniversityGofAarhus, UniversityofGMinnesota, TU-Berlin,t*the GermanResearcrhFVoundation(DFG) throughtheinstitutionalstrategyoft*Georg-August-Univrersit atGottingenandTheDanishCouncilforIndepSendenrtt*Researcrh.TheXNauthorwouldalsoliketothankXMhisformeradvisorNielsLauritzent*for?encouragingthestudyinthearea>andthemanrypSeoplewhohavebSeentesting,t*bSeenusingandhelpedimprorvingthesoftware. OtherconrtributorstotheGfansourcecoSdeinclude:t*color push BlackNK|C tcrm1200K color pop+BjarneKnrudsen(abstractparallelgraphtraverserusedformixedvolume+computationandtropicalprevXarieties)At*color push BlackNK color pop+AnrtonLeykint*color push BlackNK color pop+YVueRent*color push BlackNK color pop+JosephineYVut*ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.1.1) cvn /DEST pdfmark endLNff cmbx12L1.1$cTheffGrgobnerfanofanideal@TheGr obnerfanofanidealIF0dwreharvexin T!f(I)UR=IzthenxwresaythatIzisJhomoffgeneousUinxthe!n9-grading.{WVenow xtheidealIFURkg[x1;:::ʜ;xnP]andconsidertheequivXalencerelation:獒uURvË,in u(I)=in v (I)onŲvrectorsųu;v8`2'ER2nP.IfI5ishomogeneousthenanryequivXalenceclassconrtainsapSositivrevector.DAnyequivXalenceclasscontainingapSositivevectorisconvex.Moreorver,itsclosureisapSolyhedralcone.8WVeusethenotationr C!(I)UR:=`z pfu2ERn:in u(I)=in !2x(I)gtodenotetheclosureoftheequivXalenceclassconrtaining!n9.UTps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.1.2) cvn /DEST pdfmark endt*color push Black,6S color pop ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endDps:SDict begin [/View [/XYZ H.V]/Dest (page.7) cvn /DEST pdfmark end\t*color push BlackS color pop.color push BlackDe nition1.2 color popd[ps:SDict begin H.S endcolor push Black9 color popDEps:SDict begin H.R end|ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.fukuda) cvn H.B /ANN pdfmark end,5De nition2.8]LetIFURkg[x1;:::ʜ;xnP]bSeanideal.ٰTheJGrobnert*fanpof I|is thecollectionofconesC!(I)where!ԇ2fOER2nRA>0togetherwithalltheirt*non-emptryfaces. AnryPconePintheGr obnerfaniscalledaJGrobnerucffone.i;Therelativreinteriort*ofUin>TGx(I),S@see[ps:SDict begin H.S endcolor push Black22 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.sturmfels) cvn H.B /ANN pdfmark end ,S?Corollary1.9].3Theinitialidealin!{(I)hasatmosttrwot*reducedkGr obnerkbasessinceitishomogeneouswithrespSecttoanrygradinggivrent*bryvectorsinthen 1dimensionalsubspacespannedbrythefacet.>Theothert*Gr obnerbasisofin b!(I)canbSecomputedusingatermorderrepresenrtedbythet*outernormalofthefacet.is>aneasyrulefororienrtingtheedgesofagraphsothatithasauniquesinkandunocyclesitisalsoeasyto ndauspanningtreeforthegraph.ٕTherevrersesearcrh2&willtraverse2'thisspanningtree.[ThemethoSdworks2'wellforenumeratingvrertices_$ofpSolytopes_$sinceanorientationof_#theedgeswithrespSecttoagenericvrectorwillhaveauniquesinkandnocycles.HAproSofin[ps:SDict begin H.S endcolor push Black9 color popDEps:SDict begin H.R end|ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.fukuda) cvn H.B /ANN pdfmark end]showsthatasimilarorienrtationgorientinggGwithrespSecttoatermorderwillalsogivreanacyclicorienrtationYwithauniquesinkandthusallowenumerationbyreversesearch.RevrersesearchisthedefaultenumerationmethoSdinGfan.If8\the8[idealissymmetricwremay8\wantto8\dotheGr obnerbasisenrumerationup1&to1'symmetryV. Forexample1&theidealIF=URha//bikg[a;b]is1&inrvXariantunder1&theexcrhangeofaandb.TheidealhastrwomarkedGr obnerbasesfa뀉z+CBbgandfb뀉zꎑ,Bag,eacrh\1de ningafulldimensionalGr obnerconein\2ER22.{Uptosymmetrytheyareequal.HWVeuonlyvwranttovcomputeoneofthem.HIngeneralI2kg[x1;:::ʜ;xnP]isinrvXariantunderallpSermrutationsofsomesubgroupGVUSnP.yApplyingaper-mrutationi+ini*GtoamarkredreducedGr obnerbasisofIZwregetanothermarkredreducedHGr obnerbasisHofI.Hence,i1GactsonthesetofmarkredreducedGr obnert*color push Black,9S color pop b ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.10) cvn /DEST pdfmark end\t*color push BlackS color popt*basesofI.WVewishtocomputeonlyonerepresenrtativeforeacrhorbit.WVeapplyt*tecrhniquese!similare totheonesusedin[ps:SDict begin H.S endcolor push Black20 color pop DEps:SDict begin H.R end |ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.rambau) cvn H.B /ANN pdfmark end ]forcomputingregulartriangulationst*of^pSoinrtcon gurations^uptosymmetryV. OftenthenumbSerof^orbitsismucht*smaller]thanthenrumbSer^of]reducedGr obnerbasesandwresavea^lotoftimebyt*notcomputingthemall.t*color push Black.10S color pop yps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.11) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (section.2) cvn /DEST pdfmark end 2(Installationb#In΋someΊsituationsinstallationofGfaniseasywhileinothersituationsitcanbSevrery3complicated.Ifyouare4satis edwithanoldvrersionofGfan,XthenyroumightjustusethepacrkXagemanageronthesystem.IfyrouareusingLinuxandhaveroSot-accessthenthefollowingmightwork color push Black color popO߆T cmtt12Osudo,apt-getinstallgfanor color push Black color popOsudo,emergegfandepSendingAonyrourdistributionandpackXagemanager.Ifyousucceed, itisgoSodtoknorwwhichversionwasinstalled.8Run color push Black color popOgfan,_versionShouldthiscommandfail,thenyrouareusinganoldversionofgfan.AsSanalternativreStousingpackXagemanagersSasabSoveyoucanStrytoloScateangexecutable lenamed\gfan"intheinstallationofothermathsoftrware.Sage-Math,`kforHexample,conrtainsHagfanexecutable.SYVoualsoharvetheHpSossibilityofinstallingЮaЭprecompiledexecutables:gototheGfanwrebpage, .gotothebina-ries.hrtml subpage,eandfollow theinstructionsthere.a Thereishorwever onlyvreryfewexecutablesarvXailable.Therestofthissectioneplainshorw toinstallGfanbycompilingitfromsourceTheAprogramAwilloutputthepSolynomialringandthelistofreducedGr obnerbasesoftheinputideal.8Inthisexamplethereare33sucrhbases.Oftenitisconrvenienttostoreyrourgeneratorsinatext leinsteadoftrypingtheminevrerytimeyouusetheprogram.[YVoucanredirectthestandardinputforAtheprogramtoreadfroma leinsteadBofthekreybSoard."FVorexample,ifyourringandgeneratorsarestoredinthe leOmyinputfile.txtyrouwouldtypSe: color push gray 0 color popOgfan_bases,myoutputfile.txtThelistofreducedGr obnerbasescanbSetransformedinrtoapolyhedralrep-resenrtationIofHtheGr obnerfanbyHusingtheprogramOgfanff}r-topolyhedralfanasexplainedinSectionps:SDict begin H.S endcolor push gray 03.2 color popDEps:SDict begin H.R endps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.3.2) cvn H.B /ANN pdfmark end.HereisanotherexampleofapSolynomialringandanideal: color push gray 0 color popOZ/3Z[x_1,x_2,x_3]{x_1^2x_2-x_3,x_2^2x_3-x_1,x_3^2x_1-x_2} color push Blackffff ^ٓRcmr71ps:SDict begin H.S endps:SDict begin H.R endIps:SDict begin [/View [/XYZ H.V]/Dest (Hfootnote.1) cvn /DEST pdfmark endItk}isk|actuallymuchmorek}convenienttok|usetheEmacsshell.#InEmacspressMeta-xandtypGe shell.eWhen1you1areintheEmacsshellCtrl-upwillallowyouto1easilyreinputoldpGolynomialdataUUtoGfan. color popt*color push Black.16S color pop>ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.17) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endQps:SDict begin [/View [/XYZ H.V]/Dest (subsubsection.3.1.1) cvn /DEST pdfmark end 3.1.1)@Exploitingsymmetry@As7explainedin7Subsectionps:SDict begin H.S endcolor push gray 01.3.2 color pop' DEps:SDict begin H.R end' ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsubsection.1.3.2) cvn H.B /ANN pdfmark endtheprogramcandoitscomputationsuptosym-metryV.8In/the0exampleabSorvewe/maycycle/thethreevXariableswithoutcrhangingtheideal.HencethesubgroupGSn ZinSubsectionps:SDict begin H.S endcolor push gray 01.3.2 color pop' DEps:SDict begin H.R end' ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsubsection.1.3.2) cvn H.B /ANN pdfmark endisthegroupgener-ated3abrya3bthreecycle. A3Owaytowritedown3bthesubgroupisbywriting3balistofpSermrutationsthatgeneratethesubgroup:; color push gray 0 color popO{(0,1,2),(1,2,0)}The rstpSermrutationistheidenrtity(whichcanbSeleftout).7ThesecondpSer-mrutationisthree-cycle.!oTVogethertheygenerateG.!pSeeAppSendixps:SDict begin H.S endcolor push gray 0A color popps:SDict begin H.R end{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (appendix.A) cvn H.B /ANN pdfmark endformoreinformationonhorwtospSecifythepermrutations.The`option_O--symmetrytellsOgfantodoitscomputationsuptosymmetryV.FVorexample,; color push gray 0 color popOgfan_bases,--symmetrymyoutputfile.txtt*ThiswillcomputeaJuniversal35Grobnerbffasis. In$EthreevXariables,2ifwre$Dwant$Etodrarwstaircasediagramsoftheinitialidealst*wremayusetheprogramOgfanff}r-renderstaircase:+.color push gray 0 color popt*Ogfan_bases,--symmetryout.figt*TheFIoutputFJ leisthex g leinFigureps:SDict begin H.S endcolor push gray 01 color popDEps:SDict begin H.R endyps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (figure.1) cvn H.B /ANN pdfmark end.TVosarveFIpapSerweFIusedtheO--symmetryt*optionmBandmCgarvethemCprogramthe lealsoconrtainingthegroupgeneratorsast*input. InqthreevXariables,ifwreqwantqtodrarwtheGr obnerfan-orratherdrarwthet*inrtersectionGofHthe2-dimensionalstandardsimplexwiththeGr obnerfanwremayt*usetheprogramOgfanff}r-render:+􍍍.color push gray 0 color popt*Ogfan_bases,myoutputfile.figt*TheQoutputRisshorwninFigureps:SDict begin H.S endcolor push gray 02 color popDEps:SDict begin H.R endyps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (figure.2) cvn H.B /ANN pdfmark end. IftherearemorethanthreevXariablesint*thetpSolynomialuringthisprogramcanstillbSeusedbutitismoredicult.3ESeet*AppSendixps:SDict begin H.S endcolor push gray 0B.30 color popUps:SDict begin H.R endUps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.B.30) cvn H.B /ANN pdfmark end.t*ops:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.3.3) cvn /DEST pdfmark endL3.3$cInteractiveffmos3de@TVostudytheloScalstructureoftheGr obnerfantheprogramOgfanff}r-interactiveisczuseful.WItallorwstheusertowalkalonganc{arbitrarypathoffulldimensionalt*color push Black.18S color popkps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.19) cvn /DEST pdfmark end\t*color push BlackS color popbSt*0Kcolor push BlackϴS*gIcolor push Black color popm)7PSfile="gfan.eps" llx=0 lly=0 urx=850 ury=737 rhi=1672 %\color push BlackFigure2:8ps:SDict begin H.S endps:SDict begin H.R endFps:SDict begin [/View [/XYZ H.V]/Dest (figure.2) cvn /DEST pdfmark endTheGr obnerfanoftheidealinrtersectedwiththestandardsimplex. color pop color pop t*Gr obnerFconesintheGrobnerfanoftheideal.'ArteachsteptheuserwillspSecifyt*whicrhS;facettowalkthrough.rTheinputmustbSeamarkedS:Gr obnerbasis.rThet*programEwillminimiseFandautoreduceifnecessarytogetthereducedGr obnert*basis.8FVorexamplerunningtheprogram.color push gray 0 color popt*Ogfan_interactivet*withinput.color push gray 0 color popt*OQ[a,b,c]t*{t*c^15-c,t*b-c^11,t*a-c^9}t*willLgivreKusalistoffacetstowralkthrough.U(OnewaytoKgetastartingGr obnert*basis oisbryusing ntheprogramOgfanff}r-buchberger.)5Inthiscaseonlytrwo o ipsaret*pSossible,\sinceHtheIthirdwralldoSesnotleadtoanewGr obnercone.({Thewrallist*on9?the9>bSoundaryoftheGr obnerregion.WVemarychoSose9?anyof9?thetwo9?remainingt*facetsbrytypinginanindex(anumbSer)followedby. SeeAppSendixt*ps:SDict begin H.S endcolor push gray 0B.17 color popUps:SDict begin H.R endUps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.B.17) cvn H.B /ANN pdfmark endformoreoptions.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.3.4) cvn /DEST pdfmark endL3.4$cIntegersffandp-adics@Gfan[handles[trwosettingsinwhich[theusualdivisionandBucrhbSergeralgorithmsdo!not!suce.ݸTheseareidealsinEZ[x1;:::ʜ;xnP]andEQ[x1;:::ʜ;xnP],/Wwhere,inthelatterTsetting,]thep-adicvXaluationistakrenintoTaccountwhende ninginitialideals.t*color push Black.19S color popBps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.20) cvn /DEST pdfmark end\t*color push BlackS color pop ArtpthemomentthesetwosettingsarehandledbythecommandsOgfanff}r-overintegerst*and(Ogfanff}r-padic.bTheyallorwthe)computationofGr obnerbases,initialideals,t*Gr obnerO2cones(orpSolyhedra)O1andGrobnerfans(orcomplexes).f}Inthissectiont*wregivetwoexamples.8UsetheO--helpoptiontogetthefulldoScumentation.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.3.1) cvn /DEST pdfmark end㏍ color push gray 0Example3.1 color popNQTVocomputetheGr obnerfanof[ps:SDict begin H.S endcolor push gray 022 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.sturmfels) cvn H.B /ANN pdfmark end ,rExample3.9],withtheidealconsideredintheringEZ[a;b;c]wrerunthecommandr color push gray 0 color popOgfan_overintegers,--groebnerFan-g--log1qon color push gray 0 color popOQ[a,b,c]{a^5+b^3+c^2-1,,b^2+a^2+c-1,c^3+a^6+b^5-1}SinceIfthetrypSe-systemofIeGfandoesnotunderstandOZ[a,b,c]wreIeneedtotrickGfanbryLspSecifyingLtheringQ[a;b;c]LwhenrunningvOgfanxfff:orverintegers.OFVromtheLoutputwreconcludethattheidealhas1659reducedGr obnerbasesovertheintegers(asoppSosedto360orvera eldofcrharacteristic0). ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.3.2) cvn /DEST pdfmark end color push gray 0Example3.2 color popNQTVo!computethereduced"Gr obnerbasisofIF=URhx1s+2o2x2t3x3;3x24x3+5x4iEQ[x1;:::ʜ;x4]withrespSecttothevrector(1;0;0;1)(tie-brokrenlexi-cographically)andwithEQharvingthe2-adicvXaluation,werun color push gray 0 color popOgfan_padic,--groebnerBasis-p2qontheinput color push gray 0 color popOQ[x1,x2,x3,x4]{x1+2x2-3x3,3x2-4x3+5x4}(1,1,0,0,1)TheR rstcoSordinateoftheinputvrectorisa1,+|sinceff} ]padicrequires\homoge-nized"wreightvectors.U3ThisisExample2.4.3in 2[ps:SDict begin H.S endcolor push gray 017 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.tropicalbook) cvn H.B /ANN pdfmark end ].Thedivisionalgorithmimplemenrted+inGfan+usedforthiscomputationwraspropSosedbyMaclagan.jTVo ndallinitialideals,wrecanuseacomrbinationofJOgfanff}r-padic,--groebnerBasis,Ogfanff}r-combinerays,--sectionCONES-ifilenamepandOgfanff}padic,--initialIdeals-m.NoticethattheGr obnercomplexofI,wherevXaluationistakrenintoaccount(seepMaclagan-Sturmfels),Hisnotafan.xTheoutputofrOgfanff}r-padic,--groebnerComplex,horwever,willbSeafan.2TTVogettheGr obnercomplexwreneedtointersectthefanwiththehrypSerplane!0V=UR1.NOTICE THAVTɈff} ~Opadic "USESTHE MINIMUMCONVENTIONAVTTHEMOMENT-inordertobSeconsistenrtwithMaclaganandSturmfels.t*color push Black.20S color popps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.21) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.3.5) cvn /DEST pdfmark end L3.5$cTforicffidealsandsecondaryfans@GfanuisareplacemenrtuofthesoftwareCaTSu[ps:SDict begin H.S endcolor push gray 013 color pop DEps:SDict begin H.R end zps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.cats) cvn H.B /ANN pdfmark end ]whichucomputesGr obnerfansoftoricYfandYelatticeideals.FVorconrvenienceaYfprogramforcomputinglatticeidealshasnbSeenaddedtoGfan."TVocomputetheolatticeidealofthelatticegeneratedbry(2;1;0)and(3;0;1)wrerun: color push gray 0 color popOgfan_latticeideal{(2,-1,0),(3,0,-1)}Gfanwilltransformthegeneratorsinrtobinomialsandcomputethesaturationof\the[idealtheygeneratebrytheproSductofallvXariables.ThecomputationisindepSendenrtofthecharacteristicofthe eld.IfeonftheotherhandwrewishtocomputethetoricidealofaJveffctorwcon gura-tionXgivrenbythecolumnsofthe13-matrix(1;2;3)wrerun color push gray 0 color popOgfan_latticeideal,-t{(1,2,3)}MorerorwscanbSeaddedtothematrixifwewant.Thebcrhoiceboftheterm\vectorbcon guration"isintentionalbandnonstandard.The|reason{forthiswillbSecomeclearlaterinthissection.InGfanterminologyaJpffointcon gurationispreservredforothecollectionofpSoinrtswehavebSeforeoweadda/rorw/ofonestoconstructaprojectivretoricvXarietryV.Byaddingtherow/ofonesthe.pSoinrtcon guration-isturnedintoavector-con guration.-bNoticethatscalingavrectorofavectorcon gurationmaychangeitstoricideal.ComputingtoricidealsGfanisnotoptimal.lIfoneneedstodobigexamplesthesoftrware4ti2[ps:SDict begin H.S endcolor push gray 01 color popDEps:SDict begin H.R endzps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.4ti2) cvn H.B /ANN pdfmark end]isrecommended.FVoratoricidealtheradicalofamonomialinitialidealistheStanley-Reisnerideal$of#aregulartriangulationofthepSoinrtcon guration,4see[ps:SDict begin H.S endcolor push gray 022 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.sturmfels) cvn H.B /ANN pdfmark end ].ORHencethetoricˢGroSebnerfanisaˣre nemenrtoftheJseffcondaryNfan,CindexingˢallregulartriangulationofthepSoinrtcon guration.The!secondary!fanofthevrectorcon gurationf(1;0);(1;1);(1;2);(1;3)g!canbSecomputedbrytyping color push gray 0 color popOgfan_secondaryfan{(1,0),(1,1),(1,2),(1,3)}ComparingrEthistothe nerGr obnerfanrDofthecorrespSondingtoricidealwhicrh yrougetbydoing color push gray 0 color popPgfan_transposematrix |?gfan_latticeideal-t|gfan_bases|gfan_topolyhedralfan{(1,0),(1,1),(1,2),(1,3)}yrourealisethatthreemonomialinitialidealsofthetoricidealharvethesameradical,whilefourmonomialinitialidealspairwiseharvethesameradical.t*color push Black.21S color popps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.22) cvn /DEST pdfmark end\t*color push BlackS color pop TheVsecondaryfanWcomputationwrasaddedforconvenience.Analternativet*isLtoMuseTOPCOM[ps:SDict begin H.S endcolor push gray 020 color pop DEps:SDict begin H.R end |ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.rambau) cvn H.B /ANN pdfmark end ]. Noticehorwever,B6thatLthevrectorcon gurationsfort*gfanxfff:secondaryfandonotharvetobSepoinrted./Thismeansthatallcombinatorialt*trypSesoofpolytopeswitha xedsetofpnormalscanbeeasilyenrumerated.D5Thisist*notpSossiblewithTOPCOM.t*color push Black.22S color pop'ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.23) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (section.4) cvn /DEST pdfmark end 4(Doingztropicalcomputationsb#JThisoseffctionfollowsthemaxconventionforotropicalarithmetic. Forthenon-cffonstant35coecientcasetropicalvarietiesarede nedasin[ps:SDict begin H.S endcolor push gray 018 color pop 8{ps:SDict begin H.R end }ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.lifting) cvn H.B /ANN pdfmark end ]and[ps:SDict begin H.S endcolor push gray 015 color pop8{ps:SDict begin H.R end|ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.thesis) cvn H.B /ANN pdfmark end].InthissectionwreexplainhorwtouseGfantodotropicalcomputations.FVora xedidealIGkg[x1;:::ʜ;xnP]thesetofallfacesofallfull-dimensionalGr obnerconescisacpSolyhedralcomplexwhicrhwecallctheGr obnerfanofI.FVortropicalcomputations!the"lorwerdimensional"conesofthecomplexwillbSeofourinrterest.IngeneralevreryGr obnerconeisoftheform:lC!(I)UR:=`z: pf!n902ERn:in !I{>q% cmsy60?(I)=in !2x(I)gG:WVeGde nethetropicalvXarietryT (I)ofanidealFItobSethethesetofall!sucrhcomputethe>tropicalvXarietryofanidealwremustbSeginby nding>astartingd-dimensionalGr obnercone.+FVorthisOgfanff}r-tropicalstartingconeisused.+AfterharvingcomputedastartingconeweusetheprogramOgfanff}r-tropicaltraversetotrarversethetropicalvXarietyV.8WeillustratetheproScedurewithanexample.ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.3) cvn /DEST pdfmark end color push gray 0Remark4.3 color popJN6GfanRdoSesitscomputationsorverREQandthrustheinputshouldbeanidealgeneratedbrypSolynomialsinEQ[x1;:::ʜ;xnP].GTheassumptionthatIMisan*idealinEC[x1;:::ʜ;xnP]isneededsince*bry\primeideal"intheabSovewemean\prime2idealinthepSolynomialringorver2the2algebraicallyclosed eldEC".IfI$ isaprimeNdidealNcinEQ[x1;:::ʜ;xnP]wredonotknorwthatitstropicalvXarietryisconnected.InSectionps:SDict begin H.S endcolor push gray 04.6 color popDEps:SDict begin H.R endps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.4.6) cvn H.B /ANN pdfmark endwreaddresstheproblemofspSecifyingnon-rationalcoecienrts. ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.4) cvn /DEST pdfmark endt*color push Black.24S color popE ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.25) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0Example4.4 color pop]I{LetIFUREQ[a;:::ʜ;o] bSetheidealgeneratedbrytherelationsonthet*2#bry2minorsofa2"by6genericmatrix.$^InEC[x1;:::ʜ;xnP]theidealIgeneratesat*primeVideal.~TVogetaVstartingconeforthetrarversalVofT (I)wrerunthecommand/.color push gray 0 color popt*Ogfan_tropicalstartingcone.t*ontheinput.color push gray 0 color popt*OQ[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o]t*{t*bg-aj-cf, Ybh-ak-df,bi-al-ef,ck-bm-dj,ch-am-dg,t*cl-ej-bn, Yci-eg-an,dn-co-em,dl-bo-ek,di-ao-eh,t*gk-fm-jh, Ygl-fn-ij,hl-fo-ik,kn-jo-lm,hn-im-got*}t*andgetapairofmarkredreducedGr obnerbases/.color push gray 0 color popt*OQ[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o]t*{t*l*m+j*o, Yi*m+g*o,i*k-h*l,i*j-g*l,h*j-g*k,t*e*m+c*o, Ye*k+b*o,e*j-c*l,e*h+a*o,e*g-c*i,t*c*k-b*m, Yc*h-a*m,b*i-a*l,b*h-a*k,b*g-a*j}t*{t*l*m-k*n+j*o,,i*m-h*n+g*o,i*k-h*l+f*o,i*j-g*l+f*n,h*j-g*k+f*m,t*e*m-d*n+c*o,,e*k-d*l+b*o,e*j-c*l+b*n,e*h-d*i+a*o,e*g-c*i+a*n,t*c*k-d*j-b*m,,c*h-d*g-a*m,b*i-e*f-a*l,b*h-d*f-a*k,b*g-c*f-a*j}t*ThisJ-takresJ,abSoutasecond.WnWVestoretheoutputinthe leOgrassmann2ff}r-6.conet*forIlateruse.)kSinceIhasmanryHsymmetriesweaddthefollowinglinesdescribingt*thesymmetrygrouptotheendofthe le:/.color push gray 0 color popt*O{t*(0,8,7,6,5,4,3,2,1,14,13,11,12,10,9),t*(5,6,7,8,0,9,10,11,1,12,13,2,14,3,4)t*}t*WVearereadytotrarverseT (I).8Werunthefollorwingcommand/.color push gray 0 color popt*Ogfan_tropicaltraverse,--symmetry cmmi10FcontainingallfacesofFcontainingRǽ.  ^3ps:SDict begin H.S endps:SDict begin H.R endIps:SDict begin [/View [/XYZ H.V]/Dest (Hfootnote.3) cvn /DEST pdfmark endtakean-ballaroundarelativeinterior!"!", cmsy102RdandintersectitwithFc.PT*ranslatingtheball toUUtheoriginandscalingtheintersectiontoin nitywegetthelinkofRiinFc. color popt*color push Black.29S color pop>ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.30) cvn /DEST pdfmark end\t*color push BlackS color pop TVodemonstratetheGfanfeatureswrerecompute[ps:SDict begin H.S endcolor push gray 02 color popDEps:SDict begin H.R endps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.allermannRau) cvn H.B /ANN pdfmark end,(Example3.10].ZAneasyt*wray;to;generatethekg-cycleofthatexampleistocomputeitasahrypSersurface.t*SincethepapSerisusingminandGfanisusingmaxwreneedtocrhangethet*pSolynomialfromthepapersucrhthattheNewtonpolytopeis ipped:U.color push gray 0 color popt*Ogfan_tropicalhypersurface,>tmpfile1.polyt*Q[x_1,x_2,x_3]t*{x_2x_3+x_1x_3+x_1x_2+x_1x_2x_3}Vt*Thetwreights/multiplicitiestarestoredintheMULVTIPLICITIESt,sectionofthet*Prolymake le. ItBisharderBspSecifyingtherationalfunction.@WVemakrethefollorwing leandt*callinOfunc.poly.UU.color push gray 0 color popt*P_application?PolyhedralFant*_version?2.2t*_type?PolyhedralFant*AMBIENT_DIMt*3t*DIMt*2t*LINEALITY_DIMt*0t*RAYSt*1?00#0t*0?10#1t*0?01#2t*-1?-1-1#3t*1?10#4t*-1?-10#5t*N_RAYSt*6t*LINEALITY_SPACEt*ORTH_LINEALITY_SPACEt*1?00t*0?10t*0?01t*MAXIMAL_CONESt*{3?5}#Dimension2t*{5?2}t*{0?2}t*{1?2}t*{1?3}t*color push Black.30S color popps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.31) cvn /DEST pdfmark end\t*color push BlackS color popt*P{0?3} t*{1?4}t*{0?4}t*MULTIPLICITIESt*1t*1t*1t*1t*1t*1t*1t*1t*RAY_VALUESt*0t*0t*0t*1t*-1t*0t*LINEALITY_VALUESmt*InsteadSofspSecifyingthelinearfunctiononSeacrhmaximalconewehavetospSecifyt*itsbvXaluesboneacrhoftherarysinthefanandeacrhofthegeneratorsofthelinealitryt*space.!WThen GfanwillautomaticallyinrterpSolatethefunction.Sincethelinealitryt*spaceofthefanisemptryweleavetheLINEALITYxfff:VALUESsectionemptyV. WVenorwcomputetheWeildivisor:o.color push gray 0 color popt*Pgfan_tropicalweildivisor?-i1tmpfile1.poly-i2func.poly>tmpfile2.polyot*...andcomputetheWVeildivisoragainasin[ps:SDict begin H.S endcolor push gray 02 color popDEps:SDict begin H.R endps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.allermannRau) cvn H.B /ANN pdfmark end]....color push gray 0 color popt*Pgfan_tropicalweildivisor?-i1tmpfile2.poly-i2func.poly>tmpfile3.polyヘt*WVegetafanwiththeoriginbSeingtheonlycone.8Ithasmrultiplicity1:.color push gray 0 color popt*OMULTIPLICITIESt*-1% #,Dimension0 ThereisanotherusefulcommandforcomputingpSolyhedralfansforrationalt*functions.The~command~Ogfanff}r-tropicalfunctiontakresapSolynomialandturnst*itsinrtoafanrepresentingitsrtropicalizationwhichisatropicalrationalfunction.t*'ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.4.6) cvn /DEST pdfmark endL4.6$cNon-constantffcos3ecients(partiallydeprecated)@Theeasiestwaytocomputetropicalprev@arietiesisbyusingthecom-mandb3OgfanZff ώ)tropicalprev@arietyb4intro`ducedinb4gfan0.7.SeeSectionps:SDict begin H.S endcolor push gray 04.7 color pop@DEps:SDict begin H.R end@ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.4.7) cvn H.B /ANN pdfmark end.Thecurrentsectioniskeptforcompatibilityreasons.t*color push Black.31S color pop ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.32) cvn /DEST pdfmark end\t*color push BlackS color pop InQtropicalgeometryRitiscommontotakrethevXaluationofECfftgginrtoaccountt*whende ningthetropicalvXarietryofanidealinECfftgg[x1;:::ʜ;xnP].HereECfftggt*denotesthe eldofPuiseuxseries.S;ThevXaluationvalN(p)ofanon-zeroPuiseuxt*seriespisthedegreeofitslorwestorderterm.t*UTps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.7) cvn /DEST pdfmark end~5 color push gray 0De nition4.7 color popV!FVorf!2(ER2n &theJt-!n9J-deffgreeLoffaftermct2ax2v Swithc(2(EC2,a2EQandZv52tEZ2n isde nedZasvXal(ct2a)+!Uv=ta+!Uvn9. pTheZJt-initialTformt-inG!Y(fG)2EC[x1;:::ʜ;xnP]ofapSolynomialf2ECfftgg(n[x1;:::ʜ;xnP]isthesumofalltermsinf2ofmaximalt-!n9-wreightbutwith1substitutedfort. ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.8) cvn /DEST pdfmark endTq color push gray 0Remark4.8 color popJN6NoticeVthatVsincethast-!n9-degree1,qthemaximalt-!n9-wreightVJisattainedbryatermifthepSolynomialisnon-zero. .FVurthermore,onlya nitenrumbSerZof[termsattainthemaximrum.nTherefore,ևitmakesZsensetosubstitutetUR=1andconsiderthe nitesumoftermsasapSolynomialinEC[x1;:::ʜ;xnP]. )ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.9) cvn /DEST pdfmark endč color push gray 0Example4.9 color popNQConsiderqAfk=:k(1L+t)+t22x+tx22p2:lECfftgg)#R[x1;:::ʜ;xnP].̪LetqA!=(Fu33133z@2j)V2ER21.;1Thennt-in2~!E(fG)=V1/+x22.;1FVornanryotherchoiceof!Ythet-initialformisamonomial.)ps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.10) cvn /DEST pdfmark endō color push gray 0De nition4.10 color pop\LetEI_ECfftgg(E[x1;:::ʜ;xnP]and!^2`ER2n.J(TheJt-initialideffalSofI+withrespSectto!Xisde nedas:@ZRt-inlb!r(I)UR:=ht-inG!Y(fG):fQ2IiEC[x1;:::ʜ;xnP]: Aps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.11) cvn /DEST pdfmark end color push gray 0De nition4.11 color pop\LetIFURECfftgg(>8[x1;:::ʜ;xnP]bSeanideal."TheJtrffopicalvarietycofI+isthesetWgT ͟ 0(I)UR:=f!Ë2ER n:t-inb!(I)ismonomial-freeXg:ōWVeusethenotationT ͟20(I)toarvoidcontradictingouroriginalde nitionofthetropicalvXarietryofanidealinthepSolynomialringovera eld.ps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.12) cvn /DEST pdfmark end~5 color push gray 0Prop`osition4.12 color popfϣJ[ps:SDict begin H.S endcolor push gray 018 color pop 8{ps:SDict begin H.R end }ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.lifting) cvn H.B /ANN pdfmark end ,DPrffoposition7.3]LffetIFUREC[t;x1;:::ʜ;xnP]Jbeanideal,DJq=hIiFCfftgg[xq1*;:::\;xn7]AJand35!Ë2URER2nPJ.fiThent-inzE!(I)UR=t-inb!(Jr)J. ps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.13) cvn /DEST pdfmark end 捍 color push gray 0Remark4.13 color popQ6FVorfQ2UREC[t;x1;:::ʜ;xnP]wrehavet-ine!w(fG)UR=(in ʤ(1;!I{)#(f))jt=1nF.Con-sequenrtlyV,!for}@IFUREC[t;x1;:::ʜ;xnP]wrehavet-inP!(I)UR=(in ʤ(1;!I{)#(I))jt=1nF.gIn}@ordertodecidegift-in!(I)conrtainsamonomialwegmaysimplydecideiftheinitialidealin ʤ(1;!I{)#(I)conrtainsamonomial.8Asacorollaryweget@m+9T (I)\(f1gER nP)UR=f1gT 0(Jr):AInfactthisgivresamethoSdforcomputingthetropicalvXarietryasasetofanryidealP0J#ECfftgg[x1;:::ʜ;xnP]generatedP/bryelementsinP/thepSolynomialringorverthe9 eldof9rationalfunctionsEQ(t)[x1;:::ʜ;xnP]inGfanbryclearingdenominatorsandjinrtersectingjtheresultwiththet/=1plane.(WVeremindjthereaderthatLemma Aps:SDict begin H.S endcolor push gray 04.1 color popDEps:SDict begin H.R end|ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (theorem.4.1) cvn H.B /ANN pdfmark end @shorwsthatforcomputationalpurpSosesitisnorestrictionifIisnothomogeneous.)t*color push Black.32S color pop!ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.33) cvn /DEST pdfmark end\t*color push BlackS color pop InrtersectingothetropicalpvXarietywiththet,n=1oplanecanpwithsomedif-t* cultry bSedonebyhand.Ifthetropical(pre)-vXarietyhasbSeencomputedwitht*Ogfanff}r-tropicalintersectionUthenVitisalsopSossibletoletGfandotheinrtersec-t*tion.3WhatGfandoSesistocomputethecommonre nemenrtofthefanwiththet*fanAconsistingoftheBhalfspacetUR0AanditspropSerface.4OfcoursethisdoSesnott*remorveZtheZconesinthet=0Zplane,vybuttheyareeasilyremorvedbyZhand.oWVet*illustratetheproScedurebryanexample.t*UTps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.14) cvn /DEST pdfmark end| color push gray 0Example4.14 color popUQExercise;22yn922CB+0x+0y=+2whicrhde nesthesametropicalvXarietyV.ThisvXarietyequalsthevXarietyde nedbry!the"pSolynomialgË=URt22x22B+txy+t22yn922+x+y+t22V2URECfftgg[x;yn9].2^Notice!thatfG20isthetropicalisationofgn9.According toRemarkps:SDict begin H.S endcolor push gray 04.13 color pop〟DEps:SDict begin H.R end}ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (theorem.4.13) cvn H.B /ANN pdfmark endabSorve thewremaycomputeT ͟20(hgn9i)bycomputingthevXarietryofht22x22+Qtxy+Qt22yn922+x+Qy+t22iUREC[t;x;yn9]andinrtersectingitwiththehrypSerplanetUR=1.8Running"鍍 color push gray 0 color popOgfan_tropicalintersection,--tplaneon color push gray 0 color popOQ[t,x,y]{t^2x^2+txy+t^2y^2+x+y+t^2}"wreget color push gray 0 color popORAYS0,-10#0-1,21#10,11#2-1,11#3-1,-2-2#40,0-1#5-1,12#6MAXIMAL_CONES{3,4}#Dimension2{2,6}{1,3}{1,2}{3,6}{4,5}{0,4}{0,6}{1,5}t*color push Black.33S color pop"ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.34) cvn /DEST pdfmark end\t*color push BlackS color popWR΍t*;2color push BlackR΍*y؂color push Black color pop~;PSfile="nonconst.eps" llx=0 lly=0 urx=173 ury=173 rhi=1559 %Figure3:ps:SDict begin H.S endps:SDict begin H.R endFps:SDict begin [/View [/XYZ H.V]/Dest (figure.3) cvn /DEST pdfmark endThetropicalvXarietryde nedbythetropicalpSolynomialinExampleps:SDict begin H.S endcolor push Black4.14 color pop〟DEps:SDict begin H.R end}ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (theorem.4.14) cvn H.B /ANN pdfmark end. color pop t*amongQCotherinformation.lWVecannorwdrawtheQDtwo-dimensionalpictureaskedt*for؆intheexercise.2Theraryswithnon-zero rstcoSordinate؅become؆points؆inthet*picture.}(IfVthe rstcoSordinateisnotV1scalingisrequiredtogettherationalt*x;yn9-coSordinates.)Theraryswithzero rstcoSordinatebecomedirections.Thet*maximal*cones+shorwhowto+connecttherarys; seeFigureps:SDict begin H.S endcolor push gray 03 color popDEps:SDict begin H.R endyps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (figure.3) cvn H.B /ANN pdfmark end.gNoticethatsomeoft*theconnectionscouldharvebSeen\atin nitry".t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endQps:SDict begin [/View [/XYZ H.V]/Dest (subsubsection.4.6.1) cvn /DEST pdfmark end *4.6.1)@Algebraic eldextensionsofEQ@Ignoring1time,memoryusage0andorver owsGfan1cancomputethetropicalvXarietryT ͟20(I)pofanryidealIFURECfftgg(>8[x1;:::ʜ;xnP]generatedbyelementsofKz UW EQ (t)[x1;:::ʜ;xnP].Thisisaconsequenceofthefollorwinglemma:ps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.15) cvn /DEST pdfmark end color push gray 0Lemma4.15 color popMQJ[ps:SDict begin H.S endcolor push gray 018 color pop 8{ps:SDict begin H.R end }ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.lifting) cvn H.B /ANN pdfmark end ,LffemmaA3.12]Letk.^Jbea eldandM6=URhmikg[a]AJamaximalideffal[wherem[Jisnotamonomial.߮LetI-(kg[a]=XM@)[x1;:::ʜ;xnP]Jbeanideal.߮For!Ë2URER2n ۅJwe35havein'G!-(I)conrtainsamonomialqc()URin (0;!I{) kh(' 1 \|(I))conrtainsamonomialJwherffet':kg[a;x1;:::ʜ;xnP]!(kg[a]=XM@)[x1;:::ʜ;xnP]tJistthehomomorphismtakingelements35totheircffosets.ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.4.7) cvn /DEST pdfmark endL4.7$cTfropicalffprevarieties@Asexplainedearlier,YatropicalprevXarietryisde nedtobSeaninrtersectionof nitelymanryOtropicalPhypSersurfaces.mSuchintersectionPcanbSecomputedbryeithertheoldcommand"hgfanxfff:tropicalinrtersectionor"ithenewcommandgfanxffftropicalprevXarietryinrtroSducedinGfanversion0.7.t*color push Black.34S color pop#-ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.35) cvn /DEST pdfmark end\t*color push BlackS color pop ThereiaresevreraljchoicesitobSemadewhende ningthetropicalprevXarietryt*of:a;listofpSolynomialsinECfftgg(![x1;:::ʜ;xnP],Pforexamplewhethertshouldharvet*vXaluation`++1or`,1,{whetherthevaluegroup`,shouldbSeorderedinthepSositivreort*negativڣdirectionڢ(andwhethergfanshould\coneorver"theڣcomplexatx0V=UR1t*orx0V=UR1togetthefan-likreoutput). Horwever,themostsensiblecrhoicesarejusttohavetheequation>ꍒ0T(I)\EQ n=URvXalH(Vp(I))>덑t*satis ed,0wherevXaliscoSoridinate-wisevXaluation.-Thislearvesthecrhoiceofthink-t*ingofECfftgg,asharvingincreasingexpSonentsint(min)ordecreasingexpSonentst*int(max)andtakingvXaluationtobSet-exponenrtoftheleadingtermofaseries. In=addition=tothesecrhoices,`upartoftheliteraturemixesmaxandminconrven-t*tions]to]harveincreasingPuiseuxseries]whilefollowingconventionsof]the(global)t*Gr obnerpdfanpctheory(usingJouternormals).ThisisconsistenrtwithDe nitionps:SDict begin H.S endcolor push gray 04.7 color popDEps:SDict begin H.R end|ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (theorem.4.7) cvn H.B /ANN pdfmark end.t*FVorthesecrhoicesthefollowingequationholds:xT(I)\EQ n=URvXal(Vp(I)): In[theZfollorwingweillustrateZthesechoicesonZsomeexamples.Notethatthet*GfanparseronlyunderstandsordinarypSolynomialsatthemomenrt.?Soalthought*wre#canspSecify"thecoecienrt eldtobe"rationalfunctionsint,onlypolynomialt*ofEC(t)[x1;:::ʜ;xnP]llECfftgg)U[x1;:::ʜ;xnP]thatareactuallyinEC[t;x1;:::ʜ;xnP]cant*bSezparsedzatthemomenrt,leadingtosomeinconrvenience.Moreover,spSecifyingt*for9example9p-adicvXaluationsforidealsinEQ[x1;:::ʜ;xnP]isnotpSossibleatthet*momenrt. TheHcommandGgfanxfff:tropicalprevXarietryhastwoGoptionstosetmax/mincon-t*vrentions:[.color push gray 0 color popt*O--mintt*--minxt*[ps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.16) cvn /DEST pdfmark endwS color push gray 0Example4.16(Default:Max,max) color popյRThetPuiseuxsseriesaredecreasingint-expSonenrt>and?T(I)u\vEQ2n W$=vXal^(Vp(I))issatis ed.֣Thisconrvention?iscompatiblewithRmostofGfan,butseemstonotbSeusedmruchQinRtheliterature.pOneplaceit isusedisintheinrtroSductionof[ps:SDict begin H.S endcolor push gray 05 color popDEps:SDict begin H.R endyps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.ctv) cvn H.B /ANN pdfmark end].4InthefollorwingnotethatitwrouldnotbSepSossibleforGfantoparseO(t4+1)xwhileOt4x+1xcanbeparsed.y color push gray 0 color popOgfan,_tropicalprevariety--usevaluationQ(t)[x]{t+t4x+1x+tx3}zgivresaspartoftheoutput color push gray 0 color popORAYS1,-3#02,3#1t*color push Black.35S color pop$ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.36) cvn /DEST pdfmark end\t*color push BlackS color popt*ThetropicalprevXarietryisf3;Fu31331z@2hg.t* #Zps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.17) cvn /DEST pdfmark end\ color push gray 0Example4.17(Maxconvention,increasingt-exp`onents) color popOQWVepnorwchangetothede nitionthatiscompatiblebSothwiththeGr obnerbasisconrvention(outernormals)andincreasingt-expSonenrts. 5Thisconventionwasusedin[ps:SDict begin H.S endcolor push gray 023 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.sturmfelssolving) cvn H.B /ANN pdfmark end ],it[ps:SDict begin H.S endcolor push gray 018 color popDEps:SDict begin H.R end}ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.lifting) cvn H.B /ANN pdfmark end]and[ps:SDict begin H.S endcolor push gray 015 color pop DEps:SDict begin H.R end |ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.thesis) cvn H.B /ANN pdfmark end ]andsatis esT(I)\EQ2n=URvXal(Vp(I)). color push gray 0 color popOgfan,_tropicalprevariety--usevaluation--mintQ(t)[x]{t+t4x+1x+tx3}givresaspartoftheoutput color push gray 0 color popORAYS1,-1#02,1#1ThetropicalprevXarietryisf1;Fu31131z@2hg. #Zps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (theorem.4.18) cvn /DEST pdfmark end\ color push gray 0Example4.18(Minconvention,increasingt-exp`onents) color popLOurϻ nalϼexam-pleP[illustratesthePZmostcommonconrvention,sinceP[thisistheoneusedinthetropicalbSookbryMaclaganandSturmfels[ps:SDict begin H.S endcolor push gray 017 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.tropicalbook) cvn H.B /ANN pdfmark end ].AItwasalsousedin[ps:SDict begin H.S endcolor push gray 021 color pop DEps:SDict begin H.R end ps:SDict begin [/Color [0 1 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (cite.tropgrass) cvn H.B /ANN pdfmark end ].BThecon-vrention-hastheadvXanrtagethatPuiseuxseries.areincreasingintandtheequationT(I)\EQ2n=URvXalH(Vp(I))issatis ed. color push gray 0 color popOgfan,_tropicalprevariety--usevaluation--mint--minxQ(t)[x]{t+t4x+1x+tx3}givresaspartoftheoutput color push gray 0 color popORAYS1,1#02,-1#1ThetropicalprevXarietryisf1;Fu33133z@2jg.MoreinrterestingexamplesareobtainedbyintroSducingmorevXariablesandpoly-nomials,butherewreonlywishedtodemonstratevXariousconventions.TVoNHspSeedupcomputationtheNIarithmeticcanbecrhangedtomachine-integerusing3[for3\exampleoptionO--bits64.Notethatinthatcaseorver owchecking3[isnotcompletelyimplemenrted.If0O--usevaluationZgisnotspSeci ed,wAthentheoutputZhlivresinaspaceofdimen-sionIoneHlorwer.IfacoSecientH eldwithoutadefaultvXaluationisspSeci edintheinput,thenthetrivialvXaluationisused.t*color push Black.36S color pop%ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.37) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endHps:SDict begin [/View [/XYZ H.V]/Dest (appendix.A) cvn /DEST pdfmark end A"Datazformatsb#In,rthissectionwredescribSehow,spSolynomials,|lists,|markedGr obnerbasesetc.arerepresenrtedasASCISI׽characterstrings.ThesestringswillbSeinputtotheprograms|bry|typingorby|redirectingthestandardinputandbSeoutputbrytheprogramonthestandardoutputwhicrhmaybSethescreen,apipeora le.HUsually lesareusedforinput.8FVorexample, color push gray 0 color popOgfan_bases,outputfile.txtwill3readitsinputfromOinputfile.txtandwriteitsoutputtoOoutputfile.txt.ThefollorwingisanexampleofhorwtousepipSesforcomputingaunivrersalGr obnerbasisoftheinput: color push gray 0 color popOgfan_bases,outputfile.txtInrwgeneralrvspacesandnewlinesintheinputareignored,jbutforthepSolyhedralformatsdescribSedinSectionps:SDict begin H.S endcolor push gray 0A.7 color popqps:SDict begin H.R endqps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.A.7) cvn H.B /ANN pdfmark endandSectionps:SDict begin H.S endcolor push gray 0A.8 color popps:SDict begin H.R endps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 1]BorderArrayPatch/Subtype /Link/Dest (subsection.A.8) cvn H.B /ANN pdfmark endtherulesaredi erenrt.ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.1) cvn /DEST pdfmark endLA.1)Fields@Twrokindsof eldsaresuppSorted:color push gray 0NK color pop_The eldEQofrationalswhicrhisrepresentedbythestring\OQ".color push gray 0NK color pop_Fields<oftheformEZ=pEZwherepisaprimenrumbSer..eThese< eldsarerep-_resenrtedfbytextstringsg\OZ/pZ"WwhereOpistheprimenrumbSer.%FVorexample_\OZ/3Z"or\OZ/17Z".InGfantheprimenrumbSerpmrustbelessthan32749.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.2) cvn /DEST pdfmark endLA.2)Vfariables@A%vXariableaisdenotedbryitsnamebwhichisanstringofcharacters. Theexactrules0forwhicrh/namesareallowedhavenot/bSeendecidedoninthisvrersionofGfan andthereforeGfanacceptsmostnames.#Horwever,white spaces,commasand\O]"arenotallorwedascrharactersinthename.lFVurthermoreoneshouldnotcrhoSoselNvXariablenameslOsuchthatonenamelOisastartingsubstringofanother{don'tcrhoSosenamessuchas\Ox1"and\Ox"inthesamepSolynomialring.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.3) cvn /DEST pdfmark endLA.3)Polynomialffrings@ApSolynomialZringisrepresenrtedY rstbya eldandthenbyYalistofvXariablenames. hThelistbSeginswith\O["andendswith\O]". hNamesareseparatedbryPcommas. }TheorderingOofthevXariablesmattersasthisisalsotheorder-ingMwusedMvfortheenrtriesofforexamplewreightMwvectors.aKExamples:}\OZ/2Z[a,b]"and\OQ[xff}r-1,xff}2,y1,y2]".t*color push Black.37S color pop&!ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.38) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.4) cvn /DEST pdfmark end LA.4)Polynomials@CoSecienrtsJinIthe eldaregivenIasfractions.6AHcoSecientequalsIitsnumeratormrultipliedYbyYtheinverseYofthedenominator.~ThenrumeratoranddenominatorthemselvresaregivenbyanintegerinEZwhichismappSedtothe eldbrythehomo-morphisms!sending1UR2EZs tos!1inthe eld.The'O/'crharacterandthedenominatorcanbSeleftoutifthedenominatoris1.Ifa eldwithnon-zerocrharacteristicwascrhosenoneshouldbSecarefulthatthedenominatorisnot0.Monomialsarewritteninthefollorwingformats:^1color push gray 0NK color pop_Oa^4dccolor push gray 0NK color pop_Oa4dccolor push gray 0NK color pop_OaaadacTheI!monomial1cannotbSewrittenwithoutwritingI itasatermintheusualwray$0\O1".xAnyothertermis$1eitheramonomialoracoSecientandamonomial.A bpSolynomial is alistoftermsseparatedbryO+.TheO+marybSeleftoutifthenrumeratorofthenextmonomialisnegative.Thatdescriptiondidnotcorvereverydetail.8Hereisanexample:^0 color push gray 0 color popOhello,world-3/8a2+23abcge^4+1Invourusualnotationwrewouldwriteitlikethis:dehlC23o22rSwY+1+23abce24g+Fu3z@8da22.Itisimp`ortanttonotethatthe rsttermwritteninap`olynomialisdistinguished0fromtheothertermsinthe0p`olynomial.dThisisusefulwhensp`ecifyingmarkedGr@obnerbases.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.5) cvn /DEST pdfmark endLA.5)Lists@AlistbSeginswitha'f'ora'O(',conrtainselementsseparatedby'O,'andisendedbrya'g'ora'O)'.Di erenrttypSesoflistsmarybSeneededwhenspSecifyinginputforthevXariousprograms: color push gray 0Anintegervector color popmisalistofinrtegers. color push gray 0Alistofintegervectors color popyis3Ualistofinrtegervectors. Suchlistsareusedfor_examplewhenspSecifyinggeneratorsforsubgroupsofSnP. color push gray 0Ap`olynomiallist color popl4(orapSolynomialset)isalistofpolynomials. color push gray 0AGr@obnerbasis color popgisthelistofpSolynomialsinaGr obnerbasiswiththeleading_termhUofeacrhlistedhVpSolynomialbeingtheinitialtermwithhVrespecttoaterm_orderforwhicrhthisaGr obnerbasis. color push gray 0Alistofp`olynomialsets color pop$BisalistofpSolynomialsets.qOftenthepSolynomial_setsarerequiredtobSeGr obnerbases.t*color push Black.38S color pop'%%ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.39) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0Anideal color popF>iswrittenasalistofpSolynomialsgeneratingit.pt*FVorallotherliststhaninrtegervectorsthecharacters'f'and'g'areusedtostartt*andendthelist.t*ops:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.A.6) cvn /DEST pdfmark endLA.6)Permutations@WhenmexploitinglthesymmetryofanidealoneneedstoinputpSermrutationstothe]program. EacrhpSermutation]isspSeci edby]avector. Thelengthof]thevectorshouldSTVellsWtheVprogramtoreadingeneratorsforagroupofsymmetries_(subgroupofSgOfffn)afterharvingreadintheideal./Theprogramcrhecksthat_thejwidealjvstarys xedwhenpSermrutingthevXariableswithrespSecttoelemenrts_inthegroup.NTheprogramusesbreadth rstsearcrhtocomputetheset_oftreducedtGr obnerbasesuptosymmetrywithrespSecttothespSeci ed_subgroup. color push gray 0-e color popEcrho.8Outputthegeneratorsforthesymmetrygroup.t*color push Black.46S color pop/ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.47) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-disableSymmetryTest color popkWhenusing-^-symmetrythisoptionwilldisablethe+crheckthatthegroupreado fromtheinputactuallyisasymmetrygroup+withrespSecttotheinputideal..color push gray 0-^-parametersv@alue color popWWiththisoptionyroucanspSecifyhowmanyvXariablesto+treatasparametersinsteadofvXariables.(ThismakresitpSossibletodocom-+putationsCwhereDthecoSecienrt eldisthe eldofrationalfunctionsinthe+parameters..color push gray 0-^-interruptv@alue color popvInrterrupt]the^enumerationaftera^spSeci ednumbSer^offacets+harve6bSeen7computed(wrorksforusualsymmetrictrarversals,butmay6not+wrork pingeneralfornon-symmetric qtraversalsorfortraversalsrestrictedto+fans).t*ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.2) cvn /DEST pdfmark endLB.2(Qgfan҉ff+buchbs3erger@This~program~computesareducedlexicographicGr obnerbasisofthepSolynomialideal(givrenasinput.ThedefaultbSehavioristouseBuchbSerger's)algorithm.TheorderingofthevXariablesisaUR>b>c:::(assumingthattheringisQ[a,b,c,...]).Options: color push gray 0-w color popComputeBaGr obnerBbasiswithrespSecttoadegreelexicographicorderwith_aUR>b>c:::einstead. Thedegreesaregivrenbyeaweightvectorwhichisread_fromtheinputafterthegeneratingsethasbSeenread. color push gray 0-r color popUsetherevrerselexicographicorder(orthereverselexicographicorderasatie_breakrerif-wisused).KTheinputmustbSehomogeneousifthepurereverse_lexicographicorderiscrhosen.8Ignoredif-Wisused. color push gray 0-W color popQDo4=a4byapplyingthedivisionalgorithmforeacrhelement.8Theoutputis1fortrueand0forfalse.Options:P color push gray 0-^-remainder color popK'TVelltheprogramtooutputtheremaindersofthedivisionsrather_thanoutputting0or1. color push gray 0-^-multiplier color popI ReadsnYinapSolynomialthatwillbemrultipliedtothepolynomialto_bSedividedbeforedoingthedivision.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.5) cvn /DEST pdfmark endLB.5(Qgfan҉ff+fancommonre nementThisprogramtakrestwopSolyhedralfansandcomputestheircommonre nemenrt.Options:P color push gray 0-i1v@alue color pop7SpSecifythenameofthe rstinput le. color push gray 0-i2v@alue color pop7SpSecifythenameofthesecondinput le. color push gray 0-^-stable color pop1Computethestableinrtersection.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.6) cvn /DEST pdfmark endLB.6(Qgfan҉ff+fanhomologyThisjwprogramjvtakresapSolyhedralfanandcomputesitsreducedhomologygroups.OfcoursethesuppSortofafanisconrtractible,'sowhatisreallycomputedisthereduced[zhomology[{groupsofthesuppSortofthefanafterquotienrtingoutwiththelinealitryspaceandintersectingwithasphere.;Noticethattakingthequotienrtwith-thelinealitryspaceresultsinan-invertedsuspSensionwhichjustresultsinashiftofthereducedhomologygroups.Options:O color push gray 0-iv@alue color pop0SpSecifythenameoftheinput le. color push gray 0-^-no-optimize color popTgDisableNpreproScessingNofboundarymapsbeforeNdoinglattice_computations.t*color push Black.48S color pop1ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.49) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.7) cvn /DEST pdfmark end LB.7(Qgfan҉ff+fanisbalanced@ThisprogramcrhecksifafanisbalancedOptions:n? color push gray 0-iv@alue color pop0SpSecifythenameoftheinput le.$ color push gray 0-^-makeBalanced color popcWAssignpSositivremultiplicitiestoconestomakrethefanbal-_ancedinstead.8FVanisassumedtobSepure.$ color push gray 0-^-facetComplex color pop_sWhenmakingthefanbalanced, rsttakrefacetcomplex color push gray 0-^-cone color pop)Outputconeofallbalancedwreightfunctions.lps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.8) cvn /DEST pdfmark endLB.8(Qgfan҉ff+fanlink@This5fprogramtakresapSolyhedralfananda5evectorandcomputesthelinkofthepSolyhedral6fan6aroundthatvrertex.Thelinkwillharve6linealityspace6dimensionequalitothedimensionhoftherelativreopSenpolyhedralconehoftheoriginalfanconrtainingthevector.Options:n? color push gray 0-iv@alue color pop0SpSecifythenameoftheinput le. color push gray 0-^-symmetry color popJ>SReadsinafanstoredwithsymmetryV.6Thegeneratorsofthesym-_metrygroupmrustbSegivenonthestandardinput.$ color push gray 0-^-star color pop%pComputes|thestarinstead.BThestar|isde nedasthesmallestpSolyhedral_fanconrtainingallconesoftheoriginalfancontainingthevector.lps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.9) cvn /DEST pdfmark endLB.9(Qgfan҉ff+fanpros3duct@ThisprogramtakrestwopSolyhedralfansandcomputestheirproduct.Options:n? color push gray 0-i1v@alue color pop7SpSecifythenameofthe rstinput le. color push gray 0-i2v@alue color pop7SpSecifythenameofthesecondinput le.lps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.10) cvn /DEST pdfmark endLB.100jgfan҉ff+fansubfan@ThisprogramtakresapSolyhedralfanandalistofvrectorsandcomputesthesmallestsubfanofthefanharvingthelistofvectorsinitssuppSort.Options:n? color push gray 0-iv@alue color pop0SpSecifythenameoftheinput le.$ color push gray 0-^-symmetry color popJ>SReadsintheconestoredwithsymmetryV.Thegeneratorsofthe_symmetrygroupmrustbSegivenonthestandardinput.t*color push Black.49S color pop21ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.50) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.11) cvn /DEST pdfmark end LB.110jgfan҉ff+genericlinearchange@ThisprogramtakresalistofpSolynomialsandperformsagenericlinearcrhangeofcoSordinatesbryintroSducingnxnnewvXariables.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.12) cvn /DEST pdfmark endLB.120jgfan҉ff+gros3ebnerconeThisprogramcomputesaGr obnercone.67Threedi erenrtcasesarehandled.67Theinput֋mary֊bSeamarked֊reducedGr obnerbasisinwhicrhcaseitsGr obnerconeiscomputed.=TheIinputImarybSejustamarkredminimalbasisinwhicrhcasetheconecomputedhisgnotaGr obnerconeintheusualsensebutsmaller. (Theseconesare<2describSedin[FVukuda,PJensen,PLauritzen,Thomas]).-~The<2thirdpossiblecaseisethatdtheGr obnerconeispSossiblylorwerdimensionaleandgivenebyaepairofGr obner|dbases|easitisusefultodofortropicalvXarieties,seeoption-^-pair.ThefacetsEofEtheconecanbSereado insectionFArCETSEVandtheequationsinsectionIMPLIEDxfff:EQUAVTIONS.Options: color push gray 0-^-restrict color pop:AddaninequalitryforeacrhcoSordinate,Vsothatthetheconeisrestricted_tothenon-negativreorthant. color push gray 0-^-pair color pop&the\?-goptionisnotspSeci editwillcomputeoneusingBucrhbSerger's\>algorithm.Options: color push gray 0-g color popTVells#theprogramthattheinputisalreadyaGr obnerbasis(withtheini-_tialKtermJofeacrhpSolynomialbeingJthe rstoneslisted).Usethisoption_ifittakrestoSomuchtimetocomputethestarting(standarddegreelexico-_graphic)Gr obnerbasisandtheinputisalreadyaGrobnerbasis.t*color push Black.50S color pop3}ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.51) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-symmetry color popX}TVellsWtheVprogramtoreadingeneratorsforagroupofsymmetries+(subgroupofSgOfffn)afterharvingreadintheideal./Theprogramcrhecksthat+thejwidealjvstarys xedwhenpSermrutingthevXariableswithrespSecttoelemenrts+inthegroup.NTheprogramusesbreadth rstsearcrhtocomputetheset+oftreducedtGr obnerbasesuptosymmetrywithrespSecttothespSeci ed+subgroup..color push gray 0-^-disableSymmetryTest color popkWhenusing-^-symmetrythisoptionwilldisablethe+crheckthatthegroupreado fromtheinputactuallyisasymmetrygroup+withrespSecttotheinputideal..color push gray 0-^-restrictingfanv@alue color pop~SpSecifyIthenameIofa leconrtainingapSolyhedralfanin+Prolymake~'format.[Thecomputation~&oftheGr obnerfanwillbSerestricted+to1thisfan.5Ifthe-^-symmetryoptionisused0thenthisrestrictingfanmrust+bSeinrvXariantunderthesymmetryandtheorbitsinthe lemrustbSewith+respSectrtothespeci edgroupofsymmetries.q?Theorbitsofmaximalcones+ofthe learethenreadinratherthanthemaximalcones..color push gray 0-^-parametersv@alue color popWWiththisoptionyroucanspSecifyhowmanyvXariablesto+treatasparametersinsteadofvXariables.(ThismakresitpSossibletodocom-+putationsCwhereDthecoSecienrt eldisthe eldofrationalfunctionsinthe+parameters..color push gray 0-^-no`cones color popLTVellstheprogramnottooutputtheCONES6andMAXIMALxfff:CONES+sections,HbutpstilloutputCONESxfff:COMPRESSEDandMAXIMALxfffCONESxfffCOMPRESSED+if-^-symmetryisused..color push gray 0-^-interruptv@alue color popvInrterrupt]the^enumerationaftera^spSeci ednumbSer^offacets+harve6bSeen7computed(wrorksforusualsymmetrictrarversals,butmay6not+wrork pingeneralfornon-symmetric qtraversalsorfortraversalsrestrictedto+fans).t*ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.14) cvn /DEST pdfmark endLB.140jgfan҉ff+homogeneityspace@This%programcomputes%thehomogeneitryspaceofalistofpSolynomials-asacone.xThrusU8generatorsforU9thehomogeneityspaceU9arefoundinthesectionLIN-EALITYxfff:SPVArCE.Ifyouwishthehomogeneityspaceofanidealyoushould rstcomputexawsetofhomogeneousgeneratorsandcalltheprogramonthese. OAreducedGr obnerbasiswillalwrayssuceforthispurpSose.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.15) cvn /DEST pdfmark endLB.150jgfan҉ff+homogenizeThisSprogramhomogenisesalistofpSolynomialsbryintroSducinganextravXariable.ThenameofthevXariabletobSeinrtroducedisreadfromtheinputafterthelistoft*color push Black.51S color pop4̯ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.52) cvn /DEST pdfmark end\t*color push BlackS color popt*pSolynomials.RWithout?the>-woptionthehomogenisationisdonewithrespSecttot*totaldegree.8Example:Input:Q[x,y]fy-1gzOutput:Q[x,yV,z]fy-zgt*Options:.color push gray 0-i color pop&TVreatQinputasanQideal.Thiswillmakretheprogramcomputethehomogenisa-+tion oftheinput ideal.kThisisdonebrycomputingadegreeGr obnerbasis+andhomogenisingit..color push gray 0-w color pop"&SpSecifyjahomogenisationvrector.)ThelengthofthevectormustbSethesame+asethenrumbSereofevXariablesinthering.gThevrectorisreadfromtheinput+afterthelistofpSolynomials..color push gray 0-H color pop#b`Let;thename;ofthenewvXariablebSeH;nratherthanreadinginanamefrom+theinput.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.16) cvn /DEST pdfmark endLB.160jgfan҉ff+initialforms@ThisGprogramconrvertsFaGlistofpSolynomialstoalistoftheirinitialformswithrespSecttothevrectorgivenafterthelist.Options: color push gray 0-^-ideal color pop*TVreatinputasanideal.'Thiswillmakretheprogramcomputetheinitial_ideal)oftheidealgeneratedbrytheinputpSolynomials.mcThecomputationis_done brycomputingaGr obnerbasiswithrespSecttothegivrenvector.The_vrectormustbSepositivreortheinputpolynomialsmrustbehomogeneousin_apSositivregrading.8Noneoftheseconditionsarecheckedbytheprogram. color push gray 0-^-pair color pop&butjustconrverts thevrectorstobino-_mials.ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.21) cvn /DEST pdfmark endLB.210jgfan҉ff+leadingterms@ThisprogramconrvertsalistofpSolynomialstoalistoftheirleadingterms.Options: color push gray 0-m color popDo0the/samethingforalistofpSolynomialsets.)wThatis,outputthesetof_setsofleadingterms.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.22) cvn /DEST pdfmark endLB.220jgfan҉ff+list@ThisprogramlistsallsubScommandsoftheGfaninstallation.Options: color push gray 0-^-hidden color pop7'ShorwhiddencommandswhicharenotociallysuppSorted.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.23) cvn /DEST pdfmark endLB.230jgfan҉ff+markps3olynomialset@ThisǕprogramǖmarksasetofpSolynomialswithrespSecttothevrectorgivenǖattheend[oftheZinput,meaningthatthelargesttermsaremorved[tothefronrt..IncaseofatiethelexicographictermorderwithaUR>b>c:::isusedtobreakit.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.24) cvn /DEST pdfmark endLB.240jgfan҉ff+minkowskisum@ThisTisSaprogramforcomputingthenormalfanoftheMinkrowskiTsumoftheNewtonpSolytopesofalistofpolynomials.Options: color push gray 0-^-symmetry color popJ>STVellsWtheVprogramtoreadingeneratorsforagroupofsymmetries_(subgroupofSgOfffn)afterharvingreadintheideal./Theprogramcrhecksthat_thejwidealjvstarys xedwhenpSermrutingthevXariableswithrespSecttoelemenrts_inthegroup.NTheprogramusesbreadth rstsearcrhtocomputetheset_oftreducedtGr obnerbasesuptosymmetrywithrespSecttothespSeci ed_subgroup.t*color push Black.54S color pop7Fps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.55) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-disableSymmetryTest color popkWhenusing-^-symmetrythisoptionwilldisablethe+crheckthatthegroupreado fromtheinputactuallyisasymmetrygroup+withrespSecttotheinputideal..color push gray 0-^-no`cones color popLTVelltheprogramtonotlistconesintheoutput.t*Lps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.25) cvn /DEST pdfmark endLB.250jgfan҉ff+minors@Thisprogramwillgeneratether*rminorsofad*nmatrixofindeterminates.Options:N color push gray 0-rv@alue color pop2nSpSecifyr. color push gray 0-dv@alue color pop4SpSecifyd. color push gray 0-nv@alue color pop4SpSecifyn. color push gray 0-M2 color pop6UseMacaulary2conventionsfororderofvXariables. color push gray 0-^-names color pop4 Assignnamestotheminors. color push gray 0-^-dressian color pop>ProSduce!tropical de ningtheDressian(3,n)instead.'(Thesignsmary_notbSecorrect,thatistheequationsmarynotbePluecrkerrelations.) color push gray 0-^-pluckersymmetries color pop}&DonothingbutproSducesymmetrygeneratorsforthe_Pluecrkerideal. color push gray 0-^-symmetry color popJ>SProSducesalistofgeneratorsforthegroupofsymmetrieskreeping_thesetofminors xed.8(Onlywithout-^-names). color push gray 0-^-parametrize color popUwPrarametrize[thesetofdtimesZnmatricesofBarvinokrankless_thanorequaltor-1bryalistoftropicalpSolynomials. color push gray 0-^-ultrametric color popQProSducetropicalequationscuttingouttheultrametrics.Mps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.26) cvn /DEST pdfmark endLB.260jgfan҉ff+mixedvolume@ThisprogramcomputesthemixedvrolumeoftheNewtonpSolytopesofalistofpSolynomials.Theringisspeci edontheinput.AfterthisfollorwsthelistofpSolynomials.Options:N color push gray 0-^-vectorinput color popS+ReadinalistofpSoinrtcon gurationsinsteadofapSolynomialring_andalistofpSolynomials. color push gray 0-^-cyclicv@alue color popRUsecyclic-nexampleinsteadofreadinginput. color push gray 0-^-no`onv@alue color popNUseNoSonrburg-nexampleinsteadofreadinginput.t*color push Black.55S color pop8ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.56) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-chandrav@alue color popoOIUseChandrasekhar-nexampleinsteadofreadinginput..color push gray 0-^-k@atsuravalue color popk}UseKatsura-nexampleinsteadofreadinginput..color push gray 0-^-gaukwav@alue color poplkUseGaukwra-nexampleinsteadofreadinginput..color push gray 0-^-ecov@alue color popStUseEco-nexampleinsteadofreadinginput..color push gray 0-jv@alue color pop? NumrbSerofthreadst*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.27) cvn /DEST pdfmark endLB.270jgfan҉ff+overintegers@This[programisanexpSerimenrtalimplementation[ofGr obnerbasesforidealsinZ[xxfff:1,...,xxfffn].xSevreralqopSerationsaresupportedbrypspecifyingtheappropriateop-tion:1(1)JcomputationofthereducedGr obnerbasiswithrespSecttoagivrenvector(tiebrokren6lexicographically),(2)7computationofaninitialideal,(3)computa-tionioftheiGr obnerfan,n(4)computationofasingleGr obnercone.SinceGfanonly״knorwspSolynomialringswithcoecienrtsbeingelemenrtsofa׵ eld,~theidealisspSeci edbrygivingasetofpolynomialsinthepolynomialringQ[xxfff:1,...,xxfffn].Thatis,bryusingQinsteadofZwhenspSecifyingthering.iTheidealMUSTBEHOMOGENEOUSn(inapSositivregrading)forcomputationoftheGr obnerfan.Non-homogeneousZidealsareallorwedZfortheothercomputationsifthespSeci edwreightVvectorsWarepSositive.NOTE:ThisprogramisWexpSerimentalandexpSectedtocrhangebSehaviourinfuturereleases,sodon'twriteyrourSAGE andM2inter-facesjustyret.Options:% color push gray 0-^-gro`ebnerBasis color popbAsksItheprogramHtocomputeamarkredGr obnerbasiswith_respSect.toawreight.vectortie-brokenlexicographicallyV.8 Theinputorderis:_Ringidealvrector. color push gray 0-^-initialIdeal color popNAsksܑtheܐprogramtocomputeaninitialidealwithrespSecttoa_vrector.8Theinputorderis:Ringidealvrector. color push gray 0-^-gro`ebnerFan color popXAskstheprogramtocomputetheGr obnerfan.Theinputorder_is:8Ringideal. color push gray 0-^-gro`ebnerCone color popatAskstheprogramtocomputeasingleGr obnerconeconrtain-_ingrthespSeci edvrectorinitsrelativeinterior.=Theoutputisstoredasa_fan.8Theinputorderis:Ringidealvrector. color push gray 0-m color popFVortheopSerationstakingavrectorasinput,readinalistofvrectorsinstead,_andpSerformtheoperationforeacrhvectorinthelist. color push gray 0-g color popTVells!the!programthattheinputisalreadyaGr obnerbasis(withtheinitial_term ofeacrhpSolynomial being the rstoneslisted).jUsethisoptionifthe_usual-^-groSebnerFVanistooslorw.t*color push Black.56S color pop9ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.57) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.28) cvn /DEST pdfmark end LB.280jgfan҉ff+padic@Thisp/programisp0anexpSerimenrtalimplementationofp-adicGr obnerp0basesaspro-pSosedCbryDianeBMaclagan.SeveralopSerationsCaresupportedbryBspecifyingtheappropriateoption:(1)computationofGr obnerbasiswithrespSecttoagivrenvec-tor3B(tiebrokren3Alexicographically),Eh(2)computationofthep-adicinitialideal,Eh(3)computationтoftheуp-adicGr obnercomplexasde nedbryMaclaganandSturm-fels,{(4)computationofasinglepSolyhedronofthep-adicGr obnercomplex.#TheinputfidealshouldbSeanidealofthefpolynomialringwithcoecienrt eldQ.ThevXaluation$is#spSeci edwiththeoption-p._TheidealMUSTBEHOMOGENEOUS(in|a}pSositivregrading).'SincegfancanonlyhandlefansandnotpSolyhedralcom-plexesʄinʅgeneral,whatiscomputedastheGr obnercomplexisactuallythe"fanorver"Qthecomplex-inQotherwrords,p~the rstcoSordinateissupposedQtobe1intheoutputfan.=SimilarlyV,thewreightvectorsmustbSespeci edinanhomogeneouswrayV,yfor]examplebryaddinganadditional1entryas rstcoSordinate. (Iffractionsare_needed,|usetheenrtry_asacommondenominator.)NOTE:ThisprogramisexpSerimenrtalandexpectedtocrhangebeharviourinfuturereleases,sodon'twriteyrourSAGEandM2interfacesjustyet. Inparticularthisprogramusesthetrop-icalminimrum-convention!!Options:g3 color push gray 0-pv@alue color pop4De nestheprimeusedforthevXaluation.w color push gray 0-^-gro`ebnerBasis color popbAsksItheprogramHtocomputeamarkredGr obnerbasiswith_respSect\toa\wreight\vector(tie-brokenlexicographically).Theinputorder_is:8Ringidealvrector. color push gray 0-^-initialIdeal color popNAsksܑtheܐprogramtocomputeaninitialidealwithrespSecttoa_vrector.8Theinputorderis:Ringidealvrector.w color push gray 0-^-gro`ebnerComplex color popwtAsksrtheprogramtocomputethep-adicGr obnercom-_plex.8Theinputorderis:Ringideal. color push gray 0-^-gro`ebnerPolyhedron color popAskstheprogramtocomputeasinglepSolyhedronof_thepGr obnerqcomplexconrtainingthespSeci edvrectorinitsrelativreinterior._Theoutputisstoredasafan.8Theinputorderis:Ringidealvrector. color push gray 0-m color popFVortheopSerationstakingavrectorasinput,readinalistofvrectorsinstead,_andpSerformtheoperationforeacrhvectorinthelist.vps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.29) cvn /DEST pdfmark endLB.290jgfan҉ff+ps3olynomialsetunion@ThisMprogramcomputesMtheunionofalistofpSolynomialsetsgivrenasinput.~ThepSolynomials;mrustallbelongtothesame:ring. Theringisspeci edontheinput.AfterthisfollorwsthelistofpSolynomialsets.Options:t*color push Black.57S color pop:$ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.58) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-s color pop'ZSortoutputbrydegree.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.30) cvn /DEST pdfmark endLB.300jgfan҉ff+render@ThisWPprogramWOrendersaGr obnerfanasanx g le.TVobSemoreprecise,ttheinputis6the6listofallreducedGr obnerbasesofanideal.TheoutputisadrarwingoftheGr obnerfdfaninrtersectedwithatriangle. Thecornersofthetriangleare(1,0,0)totherighrt,$(0,1,0)totheleftand(0,0,1)atthetop.IftherearemorethanthreevXariables in theringthesecoSordinatesareextendedwithzeros.ۓItispSossibletoshiftthe1enrtrycyclicwiththeoption-^-shiftVVariables.Options: color push gray 0-L color pop|nMakrethetrianglelargersothattheshapSeoftheGr obnerregionappears. color push gray 0-^-shiftVariablesv@alue color pop<1ShiftthepSositionsofthevXariablesinthedrarwing.}hFVor_examplewiththevXalueequalto1thecornerswillbSerighrt:(0,1,0,0,...),think=bSeforeusingit.Use-^-symmetrytogivehints>abSoutwhichsubgroupofthesymmetrygroupcouldbSeuseful.'TheprogramcrheckseachelementofthespSeci edsubgrouptoseeifitpreservrestheideal.Options: color push gray 0-^-symmetry color popJ>SSpSecifysubgrouptobesearcrhedforpSermrutationskeepingtheideal_ xed. color push gray 0-^-symsigns color popCISpSecifynforoeacrhgeneratorofthegroupspSeci edwihrt-^-symmetryan_elemenrtoff1;+1g2n kwhichbyitsmultiplicationonthevXariablestogether_withthepSermrutationisexpectedtokreeptheideal xed.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.38) cvn /DEST pdfmark endLB.380jgfan҉ff+tolatex@ThisprogramconrvertsASCISImathtoTVeXmath.ceThedata-trypSeisspeci edbrytheoptions.Options: color push gray 0-h color popAddaheadertotheoutput.*3UsingthisoptiontheoutputwillbSeLaTVeXable_righrtawayV. color push gray 0-^-p`olynomialsetZff ώ) color popeThedatatobSeconrvertedisalistofpolynomials. color push gray 0-^-p`olynomialsetlistZff ώ) color popw!ThedatatobSeconrvertedisalistoflistsofpolynomials.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.39) cvn /DEST pdfmark endLB.390jgfan҉ff+tops3olyhedralfan@ThisZprogramtakresalistofreducedZ Gr obnerbasesandproSducesthefanofallfacesqofrthese.6#InthiswraybyqgivingthecompletelistofreducedGr obnerbases,the~Gr obner~fancanbSecomputedasapSolyhedralcomplex.Theoption-^-restrictletstheusercrhoSosebetrweencomputingtheGr obnerfanortherestrictedGrobnerfan.Options:t*color push Black.61S color pop>cvps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.62) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-restrict color popHv AddyanyinequalitryforeacrhcoSordinate,sothatthetheconesarere-+strictedtothenon-negativreorthant..color push gray 0-^-symmetry color popX}TVellF3theprogramtoreadinF4generatorsforagroupofsymmetries+(subgroup of SgOfffn)afterharvingreadinthering.,TheoutputisgroupSed+according.tothesesymmetries.+rOnly-onerepresenrtative.foreacrhorbitis+neededontheinput.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.40) cvn /DEST pdfmark endLB.400jgfan҉ff+tropicalbasis@ThisYprogramZcomputesatropicalbasisforanidealde ningatropicalcurvre.De ningatropicalcurvremeansthattheKrulldimensionofR/Iisatmost1+theadimensionofthehomogeneitryspaceofaI`whereRisthepSolynomialring. Theinputisageneratingsetfortheideal.)Iftheinputisnothomogeneousoption-hmrustbSeused.Options: color push gray 0-h color popHomogenisetheinputbSeforecomputingatropicalbasisanddehomogenisethe_output.Thispisoneedediftheinputgeneratorsarenotalreadyhomogeneous.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.41) cvn /DEST pdfmark endLB.410jgfan҉ff+tropicalbruteforce@This&programtakresamarkedreduced&Gr obnerbasisforahomogeneousidealandcomputes~Rthetropical~SvXarietryoftheidealasasubfanoftheGr obnerfan.Theprogramisslorwbutworksforanyhomogeneousideal.Ifyouknowthatyouridealis-primeorver-thecomplexnrumbSers-or-yousimplyknowthatitstropicalvXarietyisxpurexandconnectedincoSdimensiononethenusegfanxfff:tropicalstartingconeandgfanxfff:tropicaltrarverseinstead.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.42) cvn /DEST pdfmark endLB.420jgfan҉ff+tropicalcurve@ThisYprogramZcomputesatropicalbasisforanidealde ningatropicalcurvre.De ningatropicalcurvremeansthattheKrulldimensionofR/Iisatmost1+theadimensionofthehomogeneitryspaceofaI`whereRisthepSolynomialring. Theinputisageneratingsetfortheideal.)Iftheinputisnothomogeneousoption-hmrustbSeused.Options: color push gray 0-^-singleray color popCNSOnlycomputeasingleraryofthecurve. color push gray 0-^-parametersv@alue color popsWiththisoptionyroucanspSecifyhowmanyvXariablesto_treatasparametersinsteadofvXariables.(ThismakresitpSossibletodocom-_putationsCwhereDthecoSecienrt eldisthe eldofrationalfunctionsinthe_parameters.t*color push Black.62S color pop?r4ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.63) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.43) cvn /DEST pdfmark end LB.430jgfan҉ff+tropicalevaluation@ThisprogramevXaluatesatropicalpSolynomialfunctioninagivrensetofpoinrts.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.44) cvn /DEST pdfmark endLB.440jgfan҉ff+tropicalfunctionThisprogramtakresapSolynomialandtropicalizesit.ŀTheoutputispiecewiselinearfunctionrepresenrtedbyafanwhoseconesarethelinearregions.Eacrhrary6of6thefangetsthevXalueofthetropicalfunctionassignedtoit. Inotherwrords thisprogramcomputesthenormalfanoftheNewtonpSolytope oftheinputpSolynomialwithadditionalinformation.Options:pG color push gray 0-^-exp`onents color popJTVellprogramtoreadalistofexpSonenrtvectorsinstead.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.45) cvn /DEST pdfmark endLB.450jgfan҉ff+tropicalhyps3ersurface@ThisprogramcomputesthetropicalhrypSersurfacede nedbryaprincipalideal.TheinputisthepSolynomialringfollorwedbyasetconrtainingjustageneratoroftheideal.ops:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.46) cvn /DEST pdfmark endLB.460jgfan҉ff+tropicalintersectionThis.programcomputesthesettheoreticalinrtersection-ofasetoftropicalhy-pSersurfaces(ortobeprecise,Ʃtheircommonre nemenrtasafan).HTheinputisalistofpSolynomialswitheacrhpolynomialde ningahrypersurface.ConsideringtropicalhrypSersurfacesasfans,theintersectioncanbSecomputedasthecommonre nemenrt^of^these./Thusthe^outputisafanwhosesuppSortistheinrtersectionofthetropicalhrypSersurfaces.Options:pG color push gray 0-^-tropicalbasistest color popnĻThisoptionwilltestthattheinputpSolynomialsforatrop-_icalySbasisoftheidealtheyyRgeneratebrycomputingthetropicalprevXarietyof_the̍input̎pSolynomialsandthenre neeacrhconewiththeGr obnerfanand_testingwhethereacrhconeinthere nemenrthasanassoSciatedmonomial_free!initialideal.JIfso,thenwrehave atropicalbasisand1iswrittenas_output.qIf .not,thenazeroiswritten -totheoutputtogetherwithavrector_in87the86tropicalprevXarietrybutnotinthevXarietryV.!Theactualcheck86isdone_onahomogenizationoftheinputideal,butthisdoSesnota ecttheresult._(Thisoptionreplacesthe-toptionfromearliergfanvrersions.) color push gray 0-^-tplane color pop3ThisnAoptioninrtersectstheresultingn@fanwiththeplanexxfff:0=-1,'where_xxfff:0wisthe rstxvXariable. MTVosimplifytheimplemenrtationtheoutputis_actually>_the>^commonre nemenrtwiththenon-negativrehalfspace. 4This_meansthat"stu atin nitry"(wherexxfff:0=0)isnotremoved.t*color push Black.63S color pop@-ps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.64) cvn /DEST pdfmark end\t*color push BlackS color pop.color push gray 0-^-symmetryPrinting color popPrarse8a9groupofsymmetriesaftertheinputhasbSeen+read.8Usedwhenprinrtingwith-^-incidence.Í.color push gray 0-^-symmetryExploit color popRestrictU}computationU|totheclosedlexicographicfunda-+menrtalXdomainoftheYspSeci edsymmetrygroup.Thisoverwrites-^-restrict..color push gray 0-^-no`cones color popLTVellstheprogramnottooutputtheCONES6andMAXIMALxfff:CONES+sections,HbutpstilloutputCONESxfff:COMPRESSEDandMAXIMALxfffCONESxfffCOMPRESSED+if-^-symmetryisused..color push gray 0-^-restrict color popHv Restrictthecomputationtoafull-dimensionalconegivrenbyalistof+markred#pSolynomials.) Theconeis$theclosureofallwreightvectors#choSosing+thesemarkredterms..color push gray 0-^-stable color pop@>FindƭtheƬstableinrtersectionoftheinputpSolynomialsusingtropical+inrtersectiontheoryV.8ThiscanbSeslow.8Mostotheroptionsareignored..color push gray 0-^-parametersv@alue color popWWiththisoptionyroucanspSecifyhowmanyvXariablesto+treatasparametersinsteadofvXariables.(ThismakresitpSossibletodocom-+putationsCwhereDthecoSecienrt eldisthe eldofrationalfunctionsinthe+parameters.t*ͺps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.47) cvn /DEST pdfmark endLB.470jgfan҉ff+tropicallifting@ThisspSeci ed.hFVorexampleQ(t)will+come8with9itsusualvXaluation.Inordertorepresenrttheoutputanadditional+0thcoSordinateisinrtroduced..color push gray 0-^-mint color pop9In@a eldwithparametertAthisoptiondecidesifmaximalorminimal+degreesoftdeterminethevXaluation..color push gray 0-^-minx color pop;RSwitcrhtheprogrammetominconventionforthevXariables.t*ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.51) cvn /DEST pdfmark endLB.510jgfan҉ff+tropicalrank@This$programwillcomputethetropicalrankof$matrixgivrenasinput.TVropicaladditionisMAXIMUM.Options: color push gray 0-^-k@apranov color popDTVrarversethestableinrtersectionor,equivXalentlyV,pretendthatthecoSef-+ cienrtsaregenereric..color push gray 0-^-interruptv@alue color popvInrterrupt]the^enumerationaftera^spSeci ednumbSer^offacets+harve6bSeen7computed(wrorksforusualsymmetrictrarversals,butmay6not+wrork pingeneralfornon-symmetric qtraversalsorfortraversalsrestrictedto+fans).t*ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.54) cvn /DEST pdfmark endLB.540jgfan҉ff+tropicalweildivisor@This"aprogram"bcomputesthetropicalWVeildivisorofpiecewiselinear(ortropicalrational)functiononatropicalk-cycle.SeetheGfanmanrualformoreinforma-tion.Options: color push gray 0-i1v@alue color pop7SpSecifythenameoftheProlymakeinput leconrtainingthek-cycle. color push gray 0-i2v@alue color pop7SpSecifyStheRnameoftheProlymakeinputS lecontainingSthepiecewise_linearfunction.ʫps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (subsection.B.55) cvn /DEST pdfmark endLB.550jgfan҉ff+version@ThisprogramwritesoutvrersioninformationoftheGfaninstallation.t*color push Black.67S color popDps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.68) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 22 H.A endHps:SDict begin [/View [/XYZ H.V]/Dest (section*.2) cvn /DEST pdfmark endt*Referencest*R8ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (cite.4ti2) cvn /DEST pdfmark end덍color push gray 0[1] color pop' 4ti2hteam.4ti2|asoftrwarehpackXagehforalgebraic,lgeometricandcomrbina-' torialproblemsonlinearspaces.5AvXailableatwww.4ti2.de.?ps:SDict begin H.S endps:SDict begin 14.5 H.A endOps:SDict begin [/View [/XYZ H.V]/Dest (cite.allermannRau) cvn /DEST pdfmark endcolor push gray 0[2] color pop' LarsBAllermannCandJohannesRau.5 FirststepsintropicalinrtersectiontheoryV.' JMathematische35Zeitschrift,2009.ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (cite.avis) cvn /DEST pdfmark endcolor push gray 0[3] color pop' Darvid`Avisand`KomeiFVukuda. A`?basisenumeration`algorithmforcon-' vrex'Dhulls'Eandvertex'Eenumerationofarrangements'EandpSolyhedra.'JDiscrffete' Computational35Geffometry,8:295{313,1992.ps:SDict begin H.S endps:SDict begin 14.5 H.A endEps:SDict begin [/View [/XYZ H.V]/Dest (cite.bg) cvn /DEST pdfmark endcolor push gray 0[4] color pop' RobSert"*BieriandJ.R.J.Grorves.The"*geometryofthesetofcrharacters' inducedbryvXaluations.5JJ.35RffeineA2ngew.Math.,347:168{195,1984.ps:SDict begin H.S endps:SDict begin 14.5 H.A endFps:SDict begin [/View [/XYZ H.V]/Dest (cite.ctv) cvn /DEST pdfmark endcolor push gray 0[5] color pop' T.Bogart,WA.N.Jensen,D.SpSeyrer,VB.Sturmfels,andR.R.Thomas.' ComputingtropicalvXarieties. >/Subtype /Link H.B /ANN pdfmark end.:ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (cite.fukuda) cvn /DEST pdfmark endeAcolor push gray 0[9] color pop' KomeiFVukuda,2&AndersJensen,2'andRekhaThomas.BFComputingGr obner' fans.5JMathematics35ofComputation,toappffear,2007,math.ArC/0509544.ps:SDict begin H.S endps:SDict begin 14.5 H.A endKps:SDict begin [/View [/XYZ H.V]/Dest (cite.polymake) cvn /DEST pdfmark endcolor push gray 0[10] color pop' Ewgenij̙Garwrilow̘andMichael̘Joswig.c>/Subtype /Link H.B /ANN pdfmark end.:ps:SDict begin H.S endps:SDict begin 14.5 H.A endHps:SDict begin [/View [/XYZ H.V]/Dest (cite.huber) cvn /DEST pdfmark endeAcolor push gray 0[12] color pop' BirkrettcHubSerandRekhaR.Thomas. ComputingGr obnerfansoftoric' ideals.5JExpfferimental35Mathematics,9(3/4):321{331,2000.ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (cite.cats) cvn /DEST pdfmark endcolor push gray 0[13] color pop' Anders`(Jensen.SCaTS,asoftrware`(systemfortoricstatepSolytopes.AvXailable' athrttp://www.soSopadoopa.dk/anders/cats/cats.html.ps:SDict begin H.S endps:SDict begin 14.5 H.A endPps:SDict begin [/View [/XYZ H.V]/Dest (cite.symmetricfans) cvn /DEST pdfmark endcolor push gray 0[14] color pop' Anders N. Jensen. *TVrarversingsymmetric pSolyhedralfans. *toappSearin' \MathematicalSoftrware-ICMS2010",2010.t*color push Black.68S color popELps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if end s5ps:SDict begin H.S endps:SDict begin H.R endEps:SDict begin [/View [/XYZ H.V]/Dest (page.69) cvn /DEST pdfmark end\t*color push BlackS color popt*ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (cite.thesis) cvn /DEST pdfmark end color push gray 0[15] color pop' Anders Nedergaard Jensen.JA2lgorithmic EaspffectsofGrobnerfans' and ;8trffopical ;7varieties.RPhD xthesis, eUnivrersity zrof zsAarhus,2007.' ps:SDict begin H.S end' color push gray 0Ohttp://www.imf.au.dk/publs?id=655 color popyps:SDict begin H.R endyps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end.ps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (cite.jensen) cvn /DEST pdfmark endVcolor push gray 0[16] color pop' AndersjNedergaardJensen.Ajnon-regularGr obnerfan.JDiscrffeteComput.' Geffom.,37(3):443{453,2007,math.CO/0501352.ps:SDict begin H.S endps:SDict begin 14.5 H.A endOps:SDict begin [/View [/XYZ H.V]/Dest (cite.tropicalbook) cvn /DEST pdfmark endcolor push gray 0[17] color pop' D.)Maclaganand*B.Sturmfels.'JIntrffoductiontoTropicalGeometry:.'Gradu-' ateStudiesinMathematics.AmericanMathematicalSoScietryV,2015.UTps:SDict begin H.S endps:SDict begin 14.5 H.A endJps:SDict begin [/View [/XYZ H.V]/Dest (cite.lifting) cvn /DEST pdfmark end*color push gray 0[18] color pop' HannahMarkwig,\ThomasMarkwig,]andAndersJensen.Analgorithmfor' liftingpSoinrtsinatropicalvXarietyV.52007,math.AG/0705.2441.ps:SDict begin H.S endps:SDict begin 14.5 H.A endGps:SDict begin [/View [/XYZ H.V]/Dest (cite.MoRo) cvn /DEST pdfmark endcolor push gray 0[19] color pop' TVeoMoraandLorenzoRobbiano.TheGr obnerfanofanideal.JJ. Symbffolic' Comput.,u6(2-3):183{208,u1988.ComputationalYgaspSectsYfofcommrutativeYgal-' gebra.UTps:SDict begin H.S endps:SDict begin 14.5 H.A endIps:SDict begin [/View [/XYZ H.V]/Dest (cite.rambau) cvn /DEST pdfmark end*color push gray 0[20] color pop' J org Ramrbau.[FTOPCOM:TVriangulations ofpSointcon gurationsandori-' enrtedmatroids.5JZIB35rffeport,02-17,2002.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (cite.tropgrass) cvn /DEST pdfmark end*color push gray 0[21] color pop' DarvidSpSeyerandBerndSturmfels./ThetropicalGrassmannian./JAffdv.=Geom.,' 4(3):389{411,2004,math.ArG/0304218.ps:SDict begin H.S endps:SDict begin 14.5 H.A endLps:SDict begin [/View [/XYZ H.V]/Dest (cite.sturmfels) cvn /DEST pdfmark endcolor push gray 0[22] color pop' BerndfSturmfels.yJGrobner8bffasesandconvexpolytopes,vrolumef8gofJUniversity' Lffecture35Series.5AmericanMathematicalSoScietryV,Providence,RI,1996.ps:SDict begin H.S endps:SDict begin 14.5 H.A endSps:SDict begin [/View [/XYZ H.V]/Dest (cite.sturmfelssolving) cvn /DEST pdfmark end*color push gray 0[23] color pop' BerndSturmfels. ?JSolving.systems-ofpffolynomialequations,vrolume97of' JCBMSLRffegionalLConferenceSeriesLinMathematics.'PublishedbforatheCon-' ferenceBoardoftheMathematicalSciences,WVashington,DC,2002.ps:SDict begin H.S endps:SDict begin 14.5 H.A endMps:SDict begin [/View [/XYZ H.V]/Dest (cite.wunderling) cvn /DEST pdfmark end*color push gray 0[24] color pop' Roland =WVunderling."c)JParffalleler 3.und 3-objektorientierterSimplex-' Algorithmus.1PhD thesis, STVecrhnische 1Universit atBerlin, S1996.' ps:SDict begin H.S end' color push gray 0Ohttp://www.zib.de/Publications/abstracts/TR-96-09/ color popMps:SDict begin H.R endMps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end.t*color push Black.69S color pop;d} EPq% cmsy6=K cmsy8 cmmi10K`y cmr10ٓRcmr7ygfan0.7/doc/polyformat.eps0000644000175000017500000000722714656430617015226 0ustar andersanders%!PS-Adobe-2.0 EPSF-2.0 %%Title: polyformat.fig %%Creator: fig2dev Version 3.2 Patchlevel 4 %%CreationDate: Fri Sep 7 18:46:53 2007 %%For: anders@alice (Anders Nedergaard Jensen) %%BoundingBox: 0 0 850 737 %%Magnification: 1.0000 %%EndComments /$F2psDict 200 dict def $F2psDict begin $F2psDict /mtrx matrix put /col-1 {0 setgray} bind def /col0 {0.000 0.000 0.000 srgb} bind def /col1 {0.000 0.000 1.000 srgb} bind def /col2 {0.000 1.000 0.000 srgb} bind def /col3 {0.000 1.000 1.000 srgb} bind def /col4 {1.000 0.000 0.000 srgb} bind def /col5 {1.000 0.000 1.000 srgb} bind def /col6 {1.000 1.000 0.000 srgb} bind def /col7 {1.000 1.000 1.000 srgb} bind def /col8 {0.000 0.000 0.560 srgb} bind def /col9 {0.000 0.000 0.690 srgb} bind def /col10 {0.000 0.000 0.820 srgb} bind def /col11 {0.530 0.810 1.000 srgb} bind def /col12 {0.000 0.560 0.000 srgb} bind def /col13 {0.000 0.690 0.000 srgb} bind def /col14 {0.000 0.820 0.000 srgb} bind def /col15 {0.000 0.560 0.560 srgb} bind def /col16 {0.000 0.690 0.690 srgb} bind def /col17 {0.000 0.820 0.820 srgb} bind def /col18 {0.560 0.000 0.000 srgb} bind def /col19 {0.690 0.000 0.000 srgb} bind def /col20 {0.820 0.000 0.000 srgb} bind def /col21 {0.560 0.000 0.560 srgb} bind def /col22 {0.690 0.000 0.690 srgb} bind def /col23 {0.820 0.000 0.820 srgb} bind def /col24 {0.500 0.190 0.000 srgb} bind def /col25 {0.630 0.250 0.000 srgb} bind def /col26 {0.750 0.380 0.000 srgb} bind def /col27 {1.000 0.500 0.500 srgb} bind def /col28 {1.000 0.630 0.630 srgb} bind def /col29 {1.000 0.750 0.750 srgb} bind def /col30 {1.000 0.880 0.880 srgb} bind def /col31 {1.000 0.840 0.000 srgb} bind def end save newpath 0 737 moveto 0 0 lineto 850 0 lineto 850 737 lineto closepath clip newpath 0.7 735.5 translate 1 -1 scale /cp {closepath} bind def /ef {eofill} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth} bind def /tr {translate} bind def /tnt {dup dup currentrgbcolor 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} bind def /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 4 -2 roll mul srgb} bind def /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def /$F2psEnd {$F2psEnteredState restore end} def $F2psBegin 10 setmiterlimit 0 slj 0 slc 0.06000 0.06000 sc % % Fig objects follow % % % here starts figure with depth 50 % Polyline 7.500 slw n 14142 12247 m 7071 12247 l 8838 9185 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 8838 9185 l 10606 6123 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10606 6123 m 8838 9185 l 7071 8164 l 7071 6123 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7071 0 m 10606 6123 l 7071 6123 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7071 0 m 7071 6123 l 3535 6123 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 8838 9185 m 7071 12247 l 5303 9185 l 7071 8164 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 0 12247 m 5303 9185 l 7071 12247 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 0 12247 m 3535 6123 l 5303 9185 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7071 8164 m 5303 9185 l 3535 6123 l 7071 6123 l cp gs col7 0.25 tnt ef gr gs col0 s gr % here ends figure; $F2psEnd rs showpage gfan0.7/doc/tropbak.tex0000644000175000017500000006636614656430617014516 0ustar andersanders\newpage \section{Doing tropical computations} \label{sec:tropical} \emph{This section follows the max convention for tropical arithmetic. For the non-constant coefficient case tropical varieties are defined as in \cite{lifting} and \cite{thesis}.} \vspace{0.5cm} In this section we explain how to use Gfan to do tropical computations. For a fixed ideal $I\subseteq k[x_1,\dots,x_n]$ the set of all faces of all full-dimensional Gr\"obner cones is a polyhedral complex which we call the Gr\"obner fan of $I$. For tropical computations the lower dimensional cones of the complex will be of our interest. In general every Gr\"obner cone is of the form: $$C_\omega(I):=\overline{\{\omega'\in\R^n:\init_{\omega'}(I)=\init_\omega(I)\} }.$$ We define the tropical variety $\T(I)$ of an ideal $I$ to be the the set of all $\omega$ such that $\init_\omega(I)$ does not contain a monomial. If the ideal $I$ is homogeneous with respect to a positive grading, then the Gr\"obner cones cover all of $\R^n$ and $\T(I)$ is a union of Gr\"obner cones. Thus for a homogeneous ideal the tropical variety gets the structure of a polyhedral fan which it inherits from the Gr\"obner fan. %collection of all Gr\"obner cones with monomial-free initial %ideals. We therefore also define the tropical variety $\T(I)$ to be the collection of all Gr\"obner cones $C_\omega(I)$ such that $\init_\omega(I)$ is monomial-free. We start by noticing that for computational purposes it is no restriction to only consider the case of a homogeneous ideal: \begin{lemma}\cite[Lemma~6.2.5]{thesis} \label{lem:tropical by homogenisation} Let $I\subseteq k[x_1,\dots,x_n]$ be an ideal generated by $f_1,\dots,f_m\in k[x_1,\dots,x_n]$. Let $J=\langle f_1^h,\dots,f_m^h\rangle\subseteq k[x_0,\dots,x_n]$. Then $\init_\omega(I)$ is monomial-free if and only if $\init_{(0,\omega)}(J)$ is monomial-free where $\omega\in\R^n$. In particular we have the following identity of sets in $\R^{n+1}$: $$\{0\}\times\T(I)=\T(J)\cap(\{0\}\times\R^n).$$ \end{lemma} Here $f^h$ denotes the homogenization of the polynomial $f$. The homogenization of a list of polynomials can be computed by the program \texttt{gfan\_homogenize}. Notice that the lemma only requires the generators to be homogenized as a set of polynomials and not in the sense of a polynomial ideal. The tropical algorithms implemented in Gfan are explained in \cite{ctv}. % The reference also %contains definitions and theorems needed for understanding this %section of the manual. Notice that Gfan follows the usual conventions for signs of weight vectors defining initial forms while \cite{ctv} uses opposite signs. This means that \name is compatible with the max-plus convention whereas \cite{ctv} is compatible with the min-plus convention. \subsection{Tropical variety by brute force} The command \texttt{gfan\_tropicalbruteforce} will compute all Gr\"obner cones of a homogeneous ideal and for each check if its initial ideal contains a monomial. The output is the tropical variety of the ideal. Since the tropical variety is usually much smaller than the Gr\"obner fan this is a rather slow method for computing the tropical variety. The line \begin{verbatim} gfan_buchberger | gfan_tropicalbruteforce \end{verbatim} run on the input \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j] { bf-ah-ce, bg-ai-de, cg-aj-df, ci-bj-dh, fi-ej-gh } \end{verbatim} produces a tropical variety of the input ideal in a few minutes as a polyhedral fan, see Section~\ref{format:fan}. We use \texttt{gfan\_buchberger} since \texttt{gfan\_tropicalbruteforce} requires its input to be a marked reduced Gr\"obner basis. \begin{remark} Notice that if $k'\supseteq k$ is a field extension and $I\subseteq k[x_1,\dots,x_n]$ an ideal then $\T(I)=\T(\langle I\rangle_{k'[x_1,\dots,x_n]})$ as a polyhedral fan. This identity follows since both objects can be computed by Gr\"obner basis methods and Gr\"obner bases are independent of such field extensions. The same argument of course also applies to the Gr\"obner fans of the two ideals. \end{remark} \subsection{Traversing tropical varieties of prime ideals} Let $I\subseteq \CC[x_1,\dots,x_n]$ be a homogeneous monomial-free prime ideal of dimension $d$. By the Bieri Groves Theorem \cite{bg} the tropical variety of $I$ is a pure $d$-dimensional polyhedral fan. It is connected in codimension one (\cite[Theorem~14]{ctv}) and can be traversed by Gfan. Let $\omega$ be a relative interior point of a $d$-dimensional Gr\"obner cone in the tropical variety of $I$. Fix some term order $\prec$. Gfan represents $C_\omega(I)$ by the pair of marked reduced Gr\"obner bases $(\G_{\prec_\omega}(\init_\omega(I)),\G_{\prec_\omega}(I))$. To compute the tropical variety of an ideal we must begin by finding a starting $d$-dimensional Gr\"obner cone. For this \texttt{gfan\_tropicalstartingcone} is used. % This programs guesses a %starting cone by heuristic methods. The guessing might fail. In that %case the program will terminate with an error message. After having computed a starting cone we use the program \texttt{gfan\_tropicaltraverse} to traverse the tropical variety. %There are several options for the output. In general the choice of output we request can have a huge influence on the running time for the program. We illustrate the procedure with an example. \begin{remark} Gfan does its computations over $\Q$ and thus the input should be an ideal generated by polynomials in $\Q[x_1,\dots,x_n]$. The assumption that $I$ is an ideal in $\CC[x_1,\dots,x_n]$ is needed since by ``prime ideal'' in the above we mean ``prime ideal in the polynomial ring over the algebraically closed field $\CC$''. If $I$ is a prime ideal in $\Q[x_1,\dots,x_n]$ we do not know that its tropical variety is connected. In Section~\ref{sec:non-constant} we address the problem of specifying non-rational coefficients. \end{remark} \begin{example} Let $I\subseteq\Q[a,\dots,o]$ be the ideal generated by the relations on the 2 by 2 minors of a 2 by 6 generic matrix. In $\CC[x_1,\dots,x_n]$ the ideal $I$ generates a prime ideal. To get a starting cone for the traversal of $\T(I)$ we run the command \begin{verbatim} gfan_tropicalstartingcone \end{verbatim} on the input \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o] { bg-aj-cf, bh-ak-df, bi-al-ef, ck-bm-dj, ch-am-dg, cl-ej-bn, ci-eg-an, dn-co-em, dl-bo-ek, di-ao-eh, gk-fm-jh, gl-fn-ij, hl-fo-ik, kn-jo-lm, hn-im-go } \end{verbatim} and get a pair of marked reduced Gr\"obner bases \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o] { l*m+j*o, i*m+g*o, i*k-h*l, i*j-g*l, h*j-g*k, e*m+c*o, e*k+b*o, e*j-c*l, e*h+a*o, e*g-c*i, c*k-b*m, c*h-a*m, b*i-a*l, b*h-a*k, b*g-a*j} { l*m-k*n+j*o, i*m-h*n+g*o, i*k-h*l+f*o, i*j-g*l+f*n, h*j-g*k+f*m, e*m-d*n+c*o, e*k-d*l+b*o, e*j-c*l+b*n, e*h-d*i+a*o, e*g-c*i+a*n, c*k-d*j-b*m, c*h-d*g-a*m, b*i-e*f-a*l, b*h-d*f-a*k, b*g-c*f-a*j} \end{verbatim} This takes about a second. We store the output in the file \texttt{grassmann2\_6.cone} for later use. Since $I$ has many symmetries we add the following lines describing the symmetry group to the end of the file: \begin{verbatim} { (0,8,7,6,5,4,3,2,1,14,13,11,12,10,9), (5,6,7,8,0,9,10,11,1,12,13,2,14,3,4) } \end{verbatim} We are ready to traverse $\T(I)$. % We start by running the program with the simplest possible output and using symmetries: We run the following command \begin{verbatim} gfan_tropicaltraverse --symmetry tmpfile1.poly Q[x_1,x_2,x_3] {x_2x_3+x_1x_3+x_1x_2+x_1x_2x_3} \end{verbatim} The weights/multiplicities are stored in the MULTIPLICITIES section of the Polymake file. It is harder specifying the rational function. We make the following file and call in \texttt{func.poly}. \begin{footnotesize} \begin{verbatim} _application PolyhedralFan _version 2.2 _type PolyhedralFan AMBIENT_DIM 3 DIM 2 LINEALITY_DIM 0 RAYS 1 0 0 # 0 0 1 0 # 1 0 0 1 # 2 -1 -1 -1 # 3 1 1 0 # 4 -1 -1 0 # 5 N_RAYS 6 LINEALITY_SPACE ORTH_LINEALITY_SPACE 1 0 0 0 1 0 0 0 1 MAXIMAL_CONES {3 5} # Dimension 2 {5 2} {0 2} {1 2} {1 3} {0 3} {1 4} {0 4} MULTIPLICITIES 1 1 1 1 1 1 1 1 RAY_VALUES 0 0 0 1 -1 0 LINEALITY_VALUES \end{verbatim} \end{footnotesize} Instead of specifying the linear function on each maximal cone we have to specify its values on each of the rays in the fan and each of the generators of the lineality space. Then Gfan will automatically interpolate the function. Since the lineality space of the fan is empty we leave the LINEALITY\_VALUES section empty. We now compute the Weil divisor: \begin{footnotesize} \begin{verbatim} gfan_tropicalweildivisor -i1 tmpfile1.poly -i2 func.poly >tmpfile2.poly \end{verbatim} \end{footnotesize} ...and compute the Weil divisor again as in \cite{allermannRau}... \begin{footnotesize} \begin{verbatim} gfan_tropicalweildivisor -i1 tmpfile2.poly -i2 func.poly >tmpfile3.poly \end{verbatim} \end{footnotesize} We get a fan with the origin being the only cone. It has multiplicity $-1$: \begin{verbatim} MULTIPLICITIES -1 # Dimension 0 \end{verbatim} There is another useful command for computing polyhedral fans for rational functions. The command \texttt{gfan\_tropicalfunction} takes a polynomial and turns it into a fan representing its tropicalization which is a tropical rational function. \subsection{Non-constant coefficients (partially deprecated)} \label{sec:non-constant} {\bf The easiest way to compute prevarieties is by using the {\texttt gfan\_tropicalprevariety} introduced in gfan0.8. See Section~\ref{sec:prevariety}. The current section is kept for compatibility reasons.} In tropical geometry it is common to take the valuation of $\CC\{\{t\}\}$ into account when defining the tropical variety of an ideal in $\CC\{\{t\}\}[x_1,\dots,x_n]$. Here $\CC\{\{t\}\}$ denotes the field of Puiseux series. The valuation $\textup{val}(p)$ of a non-zero Puiseux series $p$ is the degree of its lowest order term. \begin{definition} \label{def:tomegadegree} For $\omega\in\R^n$ the \emph{t-$\omega$-degree}\index{t-$\omega$-degree} of a term $ct^ax^v$ with $c\in\CC^*$, $a\in \Q$ and $v\in\Z^n$ is defined as $-\val(ct^a)+\omega\cdot v=-a+\omega\cdot v$. The \emph{t-initial form}\index{t-initial form} $\tinit_\omega(f)\in\CC[x_1,\dots,x_n]$ of a polynomial $f\in\puiseux[x_1,\dots,x_n]$ is the sum of all terms in $f$ of maximal t-$\omega$-weight but with $1$ substituted for $t$. \end{definition} \begin{remark} Notice that since $t$ has t-$\omega$-degree $-1$, the maximal t-$\omega$-weight \emph{is} attained by a term if the polynomial is non-zero. Furthermore, only a finite number of terms attain the maximum. Therefore, it makes sense to substitute $t=1$ and consider the finite sum of terms as a polynomial in $\CC[x_1,\dots,x_n]$. \end{remark} \begin{example} Consider $f=(1+t)+t^2x+tx^2\in\puiseux[x_1,\dots,x_n]$. Let $\omega=({1\over 2})\in\R^1$. Then $\tinit_\omega(f)=1+x^2$. For any other choice of $\omega$ the t-initial form is a monomial. \end{example} \begin{definition} Let $I\subseteq \puiseux[x_1,\dots,x_n]$ and $\omega\in\R^n$. The \emph{t-initial ideal}\index{t-initial ideal} of $I$ with respect to $\omega$ is defined as: $$\tinit_\omega(I):=\langle \tinit_\omega(f):f\in I\rangle\subseteq\CC[x_1,\dots,x_n].$$ \end{definition} \begin{definition} \label{def:tropvar} Let $I\subseteq \puiseux[x_1,\dots,x_n]$ be an ideal. The \emph{tropical variety} of $I$ is the set $$\T'(I):=\{\omega\in\R^n:\tinit_\omega(I) \textup{ is monomial-free}\}.$$ %Here monomial-free\index{monomial-free} means that the ideal does not contain a monomial. \end{definition} We use the notation $\T'(I)$ to avoid contradicting our original definition of the tropical variety of an ideal in the polynomial ring over a field. %An important theorem says that the tropical variety of $I$ is also the %negative of the closure of the image of $V(I)\subseteq \CC\{\{t\}\}^*$ %under the coordinatewise valuation. \begin{proposition} \cite[Proposition~7.3]{lifting} \label{prop:computing tinit} Let $I\subseteq \CC[t,x_1,\dots,x_n]$ be an ideal, $J=\langle I\rangle_{\puiseux[x_1,\dots,x_n]}$ and $\omega\in\R^n$. Then $\textup{t-in}_\omega(I)=\textup{t-in}_\omega(J)$. \end{proposition} \begin{remark} \label{rem:computing tinit} For $f\in\CC[t,x_1,\dots,x_n]$ we have $\tinit_\omega(f)=(\init_{(-1,\omega)}(f))|_{t=1}$. Consequently, for $I\subseteq\CC[t,x_1,\dots,x_n]$ we have $\tinit_\omega(I)=(\init_{(-1,\omega)}(I))|_{t=1}$. In order to decide if $\tinit_\omega(I)$ contains a monomial we may simply decide if the initial ideal $\init_{(-1,\omega)}(I)$ contains a monomial. As a corollary we get $$\T(I)\cap(\{-1\}\times\R^n)=\{-1\}\times\T'(J).$$ In fact this gives a method for computing the tropical variety as a set of any ideal $J\subseteq\CC\{\{t\}\}[x_1,\dots,x_n]$ generated by elements in the polynomial ring over the field of rational functions $\Q(t)[x_1,\dots,x_n]$ in Gfan by clearing denominators and intersecting the result with the $t=-1$ plane. (We remind the reader that Lemma~\ref{lem:tropical by homogenisation} shows that for computational purposes it is no restriction if $I$ is not homogeneous.) \end{remark} Intersecting the tropical variety with the $t=-1$ plane can with some difficulty be done by hand. If the tropical (pre)-variety has been computed with \texttt{gfan\_tropicalintersection} then it is also possible to let Gfan do the intersection. What Gfan does is to compute the common refinement of the fan with the fan consisting of the halfspace $t\leq 0$ and its proper face. Of course this does not remove the cones in the $t=0$ plane, but they are easily removed by hand. We illustrate the procedure by an example. \begin{example} \label{ex:nonconstant} Exercise 2 in Chapter 9 of \cite{sturmfelssolving} asks us to draw the variety defined by the \emph{tropical} polynomial $f=1x^2+2xy+1y^2+3x+3y+1$. If we tropically divide this polynomial by $3$ we get $f':=f/3=-2x^2-1xy-2y^2+0x+0y+-2$ which defines the same tropical variety. This variety equals the variety defined by the polynomial $g=t^2x^2+txy+t^2y^2+x+y+t^2\in\CC\{\{t\}\}[x,y]$. Notice that $f'$ is the tropicalisation of $g$. According to Remark~\ref{rem:computing tinit} above the we may compute $\T'(\langle g\rangle)$ by computing the variety of $\langle t^2x^2+txy+t^2y^2+x+y+t^2\rangle\subseteq \CC[t,x,y]$ and intersecting it with the hyperplane $t=-1$. Running \begin{verbatim} gfan_tropicalintersection --tplane \end{verbatim} on \begin{verbatim} Q[t,x,y] {t^2x^2+txy+t^2y^2+x+y+t^2} \end{verbatim} we get \begin{verbatim} RAYS 0 -1 0 # 0 -1 2 1 # 1 0 1 1 # 2 -1 1 1 # 3 -1 -2 -2 # 4 0 0 -1 # 5 -1 1 2 # 6 MAXIMAL_CONES {3 4} # Dimension 2 {2 6} {1 3} {1 2} {3 6} {4 5} {0 4} {0 6} {1 5} \end{verbatim} among other information. We can now draw the two-dimensional picture asked for in the exercise. The rays with non-zero first coordinate become points in the picture. (If the first coordinate is not $-1$ scaling is required to get the rational $x,y$-coordinates.) The rays with zero first coordinate become directions. The maximal cones show how to connect the rays; see Figure~\ref{fig:nonconstant}. Notice that some of the connections could have been ``at infinity''. \begin{figure} \begin{center} \epsfig{file=nonconst.eps,height=5.5cm} \end{center} \caption{The tropical variety defined by the tropical polynomial in Example~\ref{ex:nonconstant}.} \label{fig:nonconstant} \end{figure} \end{example} \subsubsection{Algebraic field extensions of $\Q$} Ignoring time, memory usage and overflows Gfan can compute the tropical variety $\T'(I)$ of any ideal $I\subseteq \puiseux[x_1,\dots,x_n]$ generated by elements of $\overline{\Q}(t)[x_1,\dots,x_n]$. This is a consequence of the following lemma: \begin{lemma}\cite[Lemma~3.12]{lifting} \label{lem:fieldextension} Let $k$ be a field and $M=\langle m\rangle\subseteq k[a]$ a maximal ideal where $m$ is not a monomial. Let $I\subseteq (k[a]/M)[x_1,\dots,x_n]$ be an ideal. For $\omega\in\R^n$ we have $$\init_\omega(I) \textup{ contains a monomial} \Longleftrightarrow \init_{(0,\omega)}(\varphi^{-1}(I)) \textup{ contains a monomial}$$ where $\varphi:k[a,x_1,\dots,x_n]\rightarrow (k[a]/M)[x_1,\dots,x_n]$ is the homomorphism taking elements to their cosets. \end{lemma} \subsection{Tropical prevarieties} As explained earlier a tropical prevariety is an intersection of tropical hypersurfaces. It can be computed by either the old command {gfan\_tropicalprevariety} or the new command {gfan\_tropicalprevariety} introduced in gfan 0.8. Before we describe the command, we need discuss max and min conventions of tropical geometry. Let's start with a confession: gfan should have used the min convention from the beginning, but that was impossible to know in November 2003 when the project was started. Maximum is the default convention for weight vectors in Groebner basis theory and allows easy drawing of dual cones in polyhedral geometry. On the other hand one would usually have Puiseux series with increasing $t$-exponents and deal with negative weight for local computations with standard bases. Because $t>0$ is thought of as a small number the choice should have been minimum. The minus sign of Definition~\ref{def:tomegadegree} is an attempt to incoorporate both max and min in the same definition. Rather we should have considered the minimal $t$-expoenent of a polynomial/series when defining its degree and also use the contradict the traditional gfan convention of inner normal fans. The command {gfan\_tropicalprevariety} has three options to set max/min conventions: \begin{description} \item{--max}. \end{description} We reproduce the \begin{verbatim} \end{verbatim} giving as part of the output \begin{verbatim} RAYS 0 0 -1 # 0 1 -2 -2 # 1 1 1 1 # 2 1 2 1 # 3 0 1 1 # 4 1 1 2 # 5 0 -1 0 # 6 \end{verbatim} The rays appear in different order. Notice also the change of sign in the $t$-coordinate. gfan0.7/doc/staircase.eps0000644000175000017500000326215514656430617015016 0ustar andersanders%!PS-Adobe-2.0 EPSF-2.0 %%Title: staircase.fig %%Creator: fig2dev Version 3.2 Patchlevel 4 %%CreationDate: Tue Apr 5 11:04:56 2005 %%For: anders@paula (Anders Nedergaard Jensen) %%BoundingBox: 0 0 1353 463 %%Magnification: 1.0000 %%EndComments /$F2psDict 200 dict def $F2psDict begin $F2psDict /mtrx matrix put /col-1 {0 setgray} bind def /col0 {0.000 0.000 0.000 srgb} bind def /col1 {0.000 0.000 1.000 srgb} bind def /col2 {0.000 1.000 0.000 srgb} bind def /col3 {0.000 1.000 1.000 srgb} bind def /col4 {1.000 0.000 0.000 srgb} bind def /col5 {1.000 0.000 1.000 srgb} bind def /col6 {1.000 1.000 0.000 srgb} bind def /col7 {1.000 1.000 1.000 srgb} bind def /col8 {0.000 0.000 0.560 srgb} bind def /col9 {0.000 0.000 0.690 srgb} bind def /col10 {0.000 0.000 0.820 srgb} bind def /col11 {0.530 0.810 1.000 srgb} bind def /col12 {0.000 0.560 0.000 srgb} bind def /col13 {0.000 0.690 0.000 srgb} bind def /col14 {0.000 0.820 0.000 srgb} bind def /col15 {0.000 0.560 0.560 srgb} bind def /col16 {0.000 0.690 0.690 srgb} bind def /col17 {0.000 0.820 0.820 srgb} bind def /col18 {0.560 0.000 0.000 srgb} bind def /col19 {0.690 0.000 0.000 srgb} bind def /col20 {0.820 0.000 0.000 srgb} bind def /col21 {0.560 0.000 0.560 srgb} bind def /col22 {0.690 0.000 0.690 srgb} bind def /col23 {0.820 0.000 0.820 srgb} bind def /col24 {0.500 0.190 0.000 srgb} bind def /col25 {0.630 0.250 0.000 srgb} bind def /col26 {0.750 0.380 0.000 srgb} bind def /col27 {1.000 0.500 0.500 srgb} bind def /col28 {1.000 0.630 0.630 srgb} bind def /col29 {1.000 0.750 0.750 srgb} bind def /col30 {1.000 0.880 0.880 srgb} bind def /col31 {1.000 0.840 0.000 srgb} bind def end save newpath 0 463 moveto 0 0 lineto 1353 0 lineto 1353 463 lineto closepath clip newpath -14.8 461.5 translate 1 -1 scale /cp {closepath} bind def /ef {eofill} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth} bind def /tr {translate} bind def /tnt {dup dup currentrgbcolor 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} bind def /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 4 -2 roll mul srgb} bind def /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def /$F2psEnd {$F2psEnteredState restore end} def $F2psBegin 10 setmiterlimit 0 slj 0 slc 0.06000 0.06000 sc % % Fig objects follow % % % here starts figure with depth 50 % Polyline 7.500 slw n 2231 2100 m 2127 2159 l 2127 2039 l 2231 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 2127 1920 m 2023 1979 l 2023 1860 l 2127 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 2023 1740 m 1920 1800 l 1920 1680 l 2023 1621 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 2023 1620 m 1920 1680 l 1920 1560 l 2023 1501 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1920 1440 m 1817 1500 l 1817 1380 l 1920 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1320 m 1817 1380 l 1817 1260 l 1920 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1200 m 1817 1260 l 1817 1140 l 1920 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1080 m 1817 1140 l 1817 1020 l 1920 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 960 m 1817 1020 l 1817 900 l 1920 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 840 m 1817 900 l 1817 780 l 1920 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 720 m 1817 780 l 1817 660 l 1920 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 600 m 1817 660 l 1817 540 l 1920 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 480 m 1817 540 l 1817 420 l 1920 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 360 m 1817 420 l 1817 300 l 1920 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 240 m 1817 300 l 1817 180 l 1920 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 120 m 1817 180 l 1817 60 l 1920 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2100 m 1920 2159 l 1920 2039 l 2023 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 2023 1980 m 1920 2039 l 1920 1920 l 2023 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1920 1800 m 1817 1860 l 1817 1740 l 1920 1681 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1920 1680 m 1817 1740 l 1817 1620 l 1920 1561 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1817 1500 m 1713 1560 l 1713 1440 l 1817 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 1380 m 1713 1440 l 1713 1320 l 1817 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 1260 m 1713 1320 l 1713 1200 l 1817 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 1140 m 1713 1200 l 1713 1080 l 1817 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 1020 m 1713 1080 l 1713 960 l 1817 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 900 m 1713 960 l 1713 840 l 1817 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 780 m 1713 840 l 1713 720 l 1817 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 660 m 1713 720 l 1713 600 l 1817 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 540 m 1713 600 l 1713 480 l 1817 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 420 m 1713 480 l 1713 360 l 1817 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 300 m 1713 360 l 1713 240 l 1817 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 180 m 1713 240 l 1713 120 l 1817 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2100 m 1713 2159 l 1713 2039 l 1817 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1713 1920 m 1609 1979 l 1609 1860 l 1713 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1800 m 1609 1860 l 1609 1740 l 1713 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1680 m 1609 1740 l 1609 1620 l 1713 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1560 m 1609 1620 l 1609 1500 l 1713 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1440 m 1609 1500 l 1609 1380 l 1713 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1320 m 1609 1380 l 1609 1260 l 1713 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1200 m 1609 1260 l 1609 1140 l 1713 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 1080 m 1609 1140 l 1609 1020 l 1713 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 960 m 1609 1020 l 1609 900 l 1713 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 840 m 1609 900 l 1609 780 l 1713 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 720 m 1609 780 l 1609 660 l 1713 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 600 m 1609 660 l 1609 540 l 1713 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 480 m 1609 540 l 1609 420 l 1713 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 360 m 1609 420 l 1609 300 l 1713 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 240 m 1609 300 l 1609 180 l 1713 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2160 m 1609 2219 l 1609 2099 l 1713 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1609 1980 m 1505 2039 l 1505 1920 l 1609 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1860 m 1505 1920 l 1505 1800 l 1609 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1740 m 1505 1800 l 1505 1680 l 1609 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1620 m 1505 1680 l 1505 1560 l 1609 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1500 m 1505 1560 l 1505 1440 l 1609 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1380 m 1505 1440 l 1505 1320 l 1609 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1260 m 1505 1320 l 1505 1200 l 1609 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1140 m 1505 1200 l 1505 1080 l 1609 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 1020 m 1505 1080 l 1505 960 l 1609 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 900 m 1505 960 l 1505 840 l 1609 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 780 m 1505 840 l 1505 720 l 1609 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 660 m 1505 720 l 1505 600 l 1609 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 540 m 1505 600 l 1505 480 l 1609 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 420 m 1505 480 l 1505 360 l 1609 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 300 m 1505 360 l 1505 240 l 1609 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2160 m 1401 2219 l 1401 2099 l 1505 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2040 m 1401 2099 l 1401 1979 l 1505 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1920 m 1401 1979 l 1401 1860 l 1505 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1800 m 1401 1860 l 1401 1740 l 1505 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1680 m 1401 1740 l 1401 1620 l 1505 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1560 m 1401 1620 l 1401 1500 l 1505 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1440 m 1401 1500 l 1401 1380 l 1505 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1320 m 1401 1380 l 1401 1260 l 1505 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1200 m 1401 1260 l 1401 1140 l 1505 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 1080 m 1401 1140 l 1401 1020 l 1505 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 960 m 1401 1020 l 1401 900 l 1505 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 840 m 1401 900 l 1401 780 l 1505 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 720 m 1401 780 l 1401 660 l 1505 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 600 m 1401 660 l 1401 540 l 1505 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 480 m 1401 540 l 1401 420 l 1505 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 360 m 1401 420 l 1401 300 l 1505 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2220 m 1297 2279 l 1297 2159 l 1401 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2100 m 1297 2159 l 1297 2039 l 1401 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1980 m 1297 2039 l 1297 1920 l 1401 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1860 m 1297 1920 l 1297 1800 l 1401 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1740 m 1297 1800 l 1297 1680 l 1401 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1620 m 1297 1680 l 1297 1560 l 1401 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1500 m 1297 1560 l 1297 1440 l 1401 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1380 m 1297 1440 l 1297 1320 l 1401 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1260 m 1297 1320 l 1297 1200 l 1401 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1140 m 1297 1200 l 1297 1080 l 1401 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 1020 m 1297 1080 l 1297 960 l 1401 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 900 m 1297 960 l 1297 840 l 1401 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 780 m 1297 840 l 1297 720 l 1401 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 660 m 1297 720 l 1297 600 l 1401 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 540 m 1297 600 l 1297 480 l 1401 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 420 m 1297 480 l 1297 360 l 1401 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2280 m 1193 2339 l 1193 2219 l 1297 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2160 m 1193 2219 l 1193 2099 l 1297 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2040 m 1193 2099 l 1193 1979 l 1297 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1920 m 1193 1979 l 1193 1860 l 1297 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1800 m 1193 1860 l 1193 1740 l 1297 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1680 m 1193 1740 l 1193 1620 l 1297 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1560 m 1193 1620 l 1193 1500 l 1297 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1440 m 1193 1500 l 1193 1380 l 1297 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1320 m 1193 1380 l 1193 1260 l 1297 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1200 m 1193 1260 l 1193 1140 l 1297 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 1080 m 1193 1140 l 1193 1020 l 1297 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 960 m 1193 1020 l 1193 900 l 1297 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 840 m 1193 900 l 1193 780 l 1297 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 720 m 1193 780 l 1193 660 l 1297 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 600 m 1193 660 l 1193 540 l 1297 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 480 m 1193 540 l 1193 420 l 1297 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2340 m 1089 2399 l 1089 2279 l 1193 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2220 m 1089 2279 l 1089 2159 l 1193 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2100 m 1089 2159 l 1089 2039 l 1193 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1980 m 1089 2039 l 1089 1920 l 1193 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1860 m 1089 1920 l 1089 1800 l 1193 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1740 m 1089 1800 l 1089 1680 l 1193 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1620 m 1089 1680 l 1089 1560 l 1193 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1500 m 1089 1560 l 1089 1440 l 1193 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1380 m 1089 1440 l 1089 1320 l 1193 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1260 m 1089 1320 l 1089 1200 l 1193 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1140 m 1089 1200 l 1089 1080 l 1193 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 1020 m 1089 1080 l 1089 960 l 1193 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 900 m 1089 960 l 1089 840 l 1193 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 780 m 1089 840 l 1089 720 l 1193 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 660 m 1089 720 l 1089 600 l 1193 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 540 m 1089 600 l 1089 480 l 1193 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2400 m 985 2459 l 985 2339 l 1089 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2280 m 985 2339 l 985 2219 l 1089 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2160 m 985 2219 l 985 2099 l 1089 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2040 m 985 2099 l 985 1979 l 1089 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1920 m 985 1979 l 985 1860 l 1089 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1800 m 985 1860 l 985 1740 l 1089 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1680 m 985 1740 l 985 1620 l 1089 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1560 m 985 1620 l 985 1500 l 1089 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1440 m 985 1500 l 985 1380 l 1089 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1320 m 985 1380 l 985 1260 l 1089 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1200 m 985 1260 l 985 1140 l 1089 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 1080 m 985 1140 l 985 1020 l 1089 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 960 m 985 1020 l 985 900 l 1089 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 840 m 985 900 l 985 780 l 1089 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 720 m 985 780 l 985 660 l 1089 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 600 m 985 660 l 985 540 l 1089 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2460 m 881 2519 l 881 2399 l 985 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2340 m 881 2399 l 881 2279 l 985 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2220 m 881 2279 l 881 2159 l 985 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2100 m 881 2159 l 881 2039 l 985 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1980 m 881 2039 l 881 1920 l 985 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1860 m 881 1920 l 881 1800 l 985 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1740 m 881 1800 l 881 1680 l 985 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1620 m 881 1680 l 881 1560 l 985 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1500 m 881 1560 l 881 1440 l 985 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1380 m 881 1440 l 881 1320 l 985 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1260 m 881 1320 l 881 1200 l 985 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1140 m 881 1200 l 881 1080 l 985 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 1020 m 881 1080 l 881 960 l 985 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 900 m 881 960 l 881 840 l 985 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 780 m 881 840 l 881 720 l 985 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 660 m 881 720 l 881 600 l 985 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2520 m 777 2579 l 777 2459 l 881 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2400 m 777 2459 l 777 2339 l 881 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2280 m 777 2339 l 777 2219 l 881 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2160 m 777 2219 l 777 2099 l 881 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2040 m 777 2099 l 777 1979 l 881 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1920 m 777 1979 l 777 1860 l 881 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1800 m 777 1860 l 777 1740 l 881 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1680 m 777 1740 l 777 1620 l 881 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1560 m 777 1620 l 777 1500 l 881 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1440 m 777 1500 l 777 1380 l 881 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1320 m 777 1380 l 777 1260 l 881 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1200 m 777 1260 l 777 1140 l 881 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 1080 m 777 1140 l 777 1020 l 881 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 960 m 777 1020 l 777 900 l 881 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 840 m 777 900 l 777 780 l 881 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 720 m 777 780 l 777 660 l 881 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2580 m 673 2639 l 673 2519 l 777 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2460 m 673 2519 l 673 2399 l 777 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2340 m 673 2399 l 673 2279 l 777 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2220 m 673 2279 l 673 2159 l 777 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2100 m 673 2159 l 673 2039 l 777 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1980 m 673 2039 l 673 1920 l 777 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1860 m 673 1920 l 673 1800 l 777 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1740 m 673 1800 l 673 1680 l 777 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1620 m 673 1680 l 673 1560 l 777 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1500 m 673 1560 l 673 1440 l 777 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1380 m 673 1440 l 673 1320 l 777 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1260 m 673 1320 l 673 1200 l 777 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1140 m 673 1200 l 673 1080 l 777 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 1020 m 673 1080 l 673 960 l 777 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 900 m 673 960 l 673 840 l 777 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 780 m 673 840 l 673 720 l 777 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2640 m 570 2699 l 570 2579 l 673 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2520 m 570 2579 l 570 2459 l 673 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2400 m 570 2459 l 570 2339 l 673 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2280 m 570 2339 l 570 2219 l 673 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2160 m 570 2219 l 570 2099 l 673 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2040 m 570 2099 l 570 1979 l 673 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1920 m 570 1979 l 570 1860 l 673 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1800 m 570 1860 l 570 1740 l 673 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1680 m 570 1740 l 570 1620 l 673 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1560 m 570 1620 l 570 1500 l 673 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1440 m 570 1500 l 570 1380 l 673 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1320 m 570 1380 l 570 1260 l 673 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1200 m 570 1260 l 570 1140 l 673 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 1080 m 570 1140 l 570 1020 l 673 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 960 m 570 1020 l 570 900 l 673 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 840 m 570 900 l 570 780 l 673 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2700 m 466 2759 l 466 2639 l 570 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2580 m 466 2639 l 466 2519 l 570 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2460 m 466 2519 l 466 2399 l 570 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2340 m 466 2399 l 466 2279 l 570 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2220 m 466 2279 l 466 2159 l 570 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2100 m 466 2159 l 466 2039 l 570 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1980 m 466 2039 l 466 1920 l 570 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1860 m 466 1920 l 466 1800 l 570 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1740 m 466 1800 l 466 1680 l 570 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1620 m 466 1680 l 466 1560 l 570 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1500 m 466 1560 l 466 1440 l 570 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1380 m 466 1440 l 466 1320 l 570 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1260 m 466 1320 l 466 1200 l 570 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1140 m 466 1200 l 466 1080 l 570 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 1020 m 466 1080 l 466 960 l 570 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 900 m 466 960 l 466 840 l 570 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2760 m 362 2819 l 362 2699 l 466 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2640 m 362 2699 l 362 2579 l 466 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2520 m 362 2579 l 362 2459 l 466 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2400 m 362 2459 l 362 2339 l 466 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2280 m 362 2339 l 362 2219 l 466 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2160 m 362 2219 l 362 2099 l 466 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2040 m 362 2099 l 362 1979 l 466 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1920 m 362 1979 l 362 1860 l 466 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1800 m 362 1860 l 362 1740 l 466 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1680 m 362 1740 l 362 1620 l 466 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1560 m 362 1620 l 362 1500 l 466 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1440 m 362 1500 l 362 1380 l 466 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1320 m 362 1380 l 362 1260 l 466 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1200 m 362 1260 l 362 1140 l 466 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 1080 m 362 1140 l 362 1020 l 466 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 960 m 362 1020 l 362 900 l 466 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2820 m 258 2879 l 258 2759 l 362 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2700 m 258 2759 l 258 2639 l 362 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2580 m 258 2639 l 258 2519 l 362 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2460 m 258 2519 l 258 2399 l 362 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2340 m 258 2399 l 258 2279 l 362 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2220 m 258 2279 l 258 2159 l 362 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2100 m 258 2159 l 258 2039 l 362 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1980 m 258 2039 l 258 1920 l 362 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1860 m 258 1920 l 258 1800 l 362 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1740 m 258 1800 l 258 1680 l 362 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1620 m 258 1680 l 258 1560 l 362 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1500 m 258 1560 l 258 1440 l 362 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1380 m 258 1440 l 258 1320 l 362 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1260 m 258 1320 l 258 1200 l 362 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1140 m 258 1200 l 258 1080 l 362 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 1020 m 258 1080 l 258 960 l 362 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2160 m 1505 2040 l 1609 2100 l 1609 2220 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1713 1920 m 1713 1800 l 1817 1861 l 1817 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1713 1800 m 1713 1680 l 1817 1741 l 1817 1861 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1713 1680 m 1713 1560 l 1817 1621 l 1817 1741 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1920 1440 m 1920 1320 l 2023 1381 l 2023 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1320 m 1920 1200 l 2023 1261 l 2023 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1200 m 1920 1080 l 2023 1141 l 2023 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1080 m 1920 960 l 2023 1021 l 2023 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 960 m 1920 840 l 2023 901 l 2023 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 840 m 1920 720 l 2023 781 l 2023 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 720 m 1920 600 l 2023 661 l 2023 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 600 m 1920 480 l 2023 541 l 2023 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 480 m 1920 360 l 2023 421 l 2023 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 360 m 1920 240 l 2023 301 l 2023 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 240 m 1920 120 l 2023 181 l 2023 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 120 m 1920 0 l 2023 61 l 2023 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2100 m 1817 1980 l 1920 2040 l 1920 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1817 1980 m 1817 1860 l 1920 1920 l 1920 2040 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 2023 1740 m 2023 1620 l 2127 1681 l 2127 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1620 m 2023 1500 l 2127 1561 l 2127 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1500 m 2023 1380 l 2127 1441 l 2127 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1380 m 2023 1260 l 2127 1321 l 2127 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1260 m 2023 1140 l 2127 1201 l 2127 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1140 m 2023 1020 l 2127 1081 l 2127 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1020 m 2023 900 l 2127 961 l 2127 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 900 m 2023 780 l 2127 841 l 2127 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 780 m 2023 660 l 2127 721 l 2127 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 660 m 2023 540 l 2127 601 l 2127 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 540 m 2023 420 l 2127 481 l 2127 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 420 m 2023 300 l 2127 361 l 2127 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 300 m 2023 180 l 2127 241 l 2127 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 180 m 2023 60 l 2127 121 l 2127 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2100 m 2023 1980 l 2127 2040 l 2127 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 2127 1920 m 2127 1800 l 2231 1861 l 2231 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1800 m 2127 1680 l 2231 1741 l 2231 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1680 m 2127 1560 l 2231 1621 l 2231 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1560 m 2127 1440 l 2231 1501 l 2231 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1440 m 2127 1320 l 2231 1381 l 2231 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1320 m 2127 1200 l 2231 1261 l 2231 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1200 m 2127 1080 l 2231 1141 l 2231 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1080 m 2127 960 l 2231 1021 l 2231 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 960 m 2127 840 l 2231 901 l 2231 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 840 m 2127 720 l 2231 781 l 2231 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 720 m 2127 600 l 2231 661 l 2231 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 600 m 2127 480 l 2231 541 l 2231 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 480 m 2127 360 l 2231 421 l 2231 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 360 m 2127 240 l 2231 301 l 2231 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 240 m 2127 120 l 2231 181 l 2231 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2100 m 2231 1980 l 2335 2040 l 2335 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1980 m 2231 1860 l 2335 1920 l 2335 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1860 m 2231 1740 l 2335 1801 l 2335 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1740 m 2231 1620 l 2335 1681 l 2335 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1620 m 2231 1500 l 2335 1561 l 2335 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1500 m 2231 1380 l 2335 1441 l 2335 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1380 m 2231 1260 l 2335 1321 l 2335 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1260 m 2231 1140 l 2335 1201 l 2335 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1140 m 2231 1020 l 2335 1081 l 2335 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 1020 m 2231 900 l 2335 961 l 2335 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 900 m 2231 780 l 2335 841 l 2335 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 780 m 2231 660 l 2335 721 l 2335 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 660 m 2231 540 l 2335 601 l 2335 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 540 m 2231 420 l 2335 481 l 2335 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 420 m 2231 300 l 2335 361 l 2335 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 300 m 2231 180 l 2335 241 l 2335 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2160 m 2335 2040 l 2439 2100 l 2439 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2040 m 2335 1920 l 2439 1980 l 2439 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1920 m 2335 1800 l 2439 1861 l 2439 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1800 m 2335 1680 l 2439 1741 l 2439 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1680 m 2335 1560 l 2439 1621 l 2439 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1560 m 2335 1440 l 2439 1501 l 2439 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1440 m 2335 1320 l 2439 1381 l 2439 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1320 m 2335 1200 l 2439 1261 l 2439 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1200 m 2335 1080 l 2439 1141 l 2439 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 1080 m 2335 960 l 2439 1021 l 2439 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 960 m 2335 840 l 2439 901 l 2439 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 840 m 2335 720 l 2439 781 l 2439 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 720 m 2335 600 l 2439 661 l 2439 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 600 m 2335 480 l 2439 541 l 2439 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 480 m 2335 360 l 2439 421 l 2439 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 360 m 2335 240 l 2439 301 l 2439 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2220 m 2439 2100 l 2543 2160 l 2543 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2100 m 2439 1980 l 2543 2040 l 2543 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1980 m 2439 1860 l 2543 1920 l 2543 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1860 m 2439 1740 l 2543 1801 l 2543 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1740 m 2439 1620 l 2543 1681 l 2543 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1620 m 2439 1500 l 2543 1561 l 2543 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1500 m 2439 1380 l 2543 1441 l 2543 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1380 m 2439 1260 l 2543 1321 l 2543 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1260 m 2439 1140 l 2543 1201 l 2543 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1140 m 2439 1020 l 2543 1081 l 2543 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 1020 m 2439 900 l 2543 961 l 2543 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 900 m 2439 780 l 2543 841 l 2543 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 780 m 2439 660 l 2543 721 l 2543 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 660 m 2439 540 l 2543 601 l 2543 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 540 m 2439 420 l 2543 481 l 2543 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 420 m 2439 300 l 2543 361 l 2543 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2280 m 2543 2160 l 2647 2220 l 2647 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2160 m 2543 2040 l 2647 2100 l 2647 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2040 m 2543 1920 l 2647 1980 l 2647 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1920 m 2543 1800 l 2647 1861 l 2647 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1800 m 2543 1680 l 2647 1741 l 2647 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1680 m 2543 1560 l 2647 1621 l 2647 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1560 m 2543 1440 l 2647 1501 l 2647 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1440 m 2543 1320 l 2647 1381 l 2647 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1320 m 2543 1200 l 2647 1261 l 2647 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1200 m 2543 1080 l 2647 1141 l 2647 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 1080 m 2543 960 l 2647 1021 l 2647 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 960 m 2543 840 l 2647 901 l 2647 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 840 m 2543 720 l 2647 781 l 2647 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 720 m 2543 600 l 2647 661 l 2647 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 600 m 2543 480 l 2647 541 l 2647 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 480 m 2543 360 l 2647 421 l 2647 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2340 m 2647 2220 l 2751 2280 l 2751 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2220 m 2647 2100 l 2751 2160 l 2751 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2100 m 2647 1980 l 2751 2040 l 2751 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1980 m 2647 1860 l 2751 1920 l 2751 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1860 m 2647 1740 l 2751 1801 l 2751 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1740 m 2647 1620 l 2751 1681 l 2751 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1620 m 2647 1500 l 2751 1561 l 2751 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1500 m 2647 1380 l 2751 1441 l 2751 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1380 m 2647 1260 l 2751 1321 l 2751 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1260 m 2647 1140 l 2751 1201 l 2751 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1140 m 2647 1020 l 2751 1081 l 2751 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 1020 m 2647 900 l 2751 961 l 2751 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 900 m 2647 780 l 2751 841 l 2751 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 780 m 2647 660 l 2751 721 l 2751 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 660 m 2647 540 l 2751 601 l 2751 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 540 m 2647 420 l 2751 481 l 2751 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2400 m 2751 2280 l 2855 2340 l 2855 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2280 m 2751 2160 l 2855 2220 l 2855 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2160 m 2751 2040 l 2855 2100 l 2855 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2040 m 2751 1920 l 2855 1980 l 2855 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1920 m 2751 1800 l 2855 1861 l 2855 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1800 m 2751 1680 l 2855 1741 l 2855 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1680 m 2751 1560 l 2855 1621 l 2855 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1560 m 2751 1440 l 2855 1501 l 2855 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1440 m 2751 1320 l 2855 1381 l 2855 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1320 m 2751 1200 l 2855 1261 l 2855 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1200 m 2751 1080 l 2855 1141 l 2855 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 1080 m 2751 960 l 2855 1021 l 2855 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 960 m 2751 840 l 2855 901 l 2855 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 840 m 2751 720 l 2855 781 l 2855 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 720 m 2751 600 l 2855 661 l 2855 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 600 m 2751 480 l 2855 541 l 2855 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2460 m 2855 2340 l 2959 2400 l 2959 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2340 m 2855 2220 l 2959 2280 l 2959 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2220 m 2855 2100 l 2959 2160 l 2959 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2100 m 2855 1980 l 2959 2040 l 2959 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1980 m 2855 1860 l 2959 1920 l 2959 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1860 m 2855 1740 l 2959 1801 l 2959 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1740 m 2855 1620 l 2959 1681 l 2959 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1620 m 2855 1500 l 2959 1561 l 2959 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1500 m 2855 1380 l 2959 1441 l 2959 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1380 m 2855 1260 l 2959 1321 l 2959 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1260 m 2855 1140 l 2959 1201 l 2959 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1140 m 2855 1020 l 2959 1081 l 2959 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 1020 m 2855 900 l 2959 961 l 2959 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 900 m 2855 780 l 2959 841 l 2959 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 780 m 2855 660 l 2959 721 l 2959 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 660 m 2855 540 l 2959 601 l 2959 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2520 m 2959 2400 l 3063 2460 l 3063 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2400 m 2959 2280 l 3063 2340 l 3063 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2280 m 2959 2160 l 3063 2220 l 3063 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2160 m 2959 2040 l 3063 2100 l 3063 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2040 m 2959 1920 l 3063 1980 l 3063 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1920 m 2959 1800 l 3063 1861 l 3063 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1800 m 2959 1680 l 3063 1741 l 3063 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1680 m 2959 1560 l 3063 1621 l 3063 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1560 m 2959 1440 l 3063 1501 l 3063 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1440 m 2959 1320 l 3063 1381 l 3063 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1320 m 2959 1200 l 3063 1261 l 3063 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1200 m 2959 1080 l 3063 1141 l 3063 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 1080 m 2959 960 l 3063 1021 l 3063 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 960 m 2959 840 l 3063 901 l 3063 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 840 m 2959 720 l 3063 781 l 3063 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 720 m 2959 600 l 3063 661 l 3063 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2580 m 3063 2460 l 3167 2520 l 3167 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2460 m 3063 2340 l 3167 2400 l 3167 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2340 m 3063 2220 l 3167 2280 l 3167 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2220 m 3063 2100 l 3167 2160 l 3167 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2100 m 3063 1980 l 3167 2040 l 3167 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1980 m 3063 1860 l 3167 1920 l 3167 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1860 m 3063 1740 l 3167 1801 l 3167 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1740 m 3063 1620 l 3167 1681 l 3167 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1620 m 3063 1500 l 3167 1561 l 3167 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1500 m 3063 1380 l 3167 1441 l 3167 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1380 m 3063 1260 l 3167 1321 l 3167 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1260 m 3063 1140 l 3167 1201 l 3167 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1140 m 3063 1020 l 3167 1081 l 3167 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 1020 m 3063 900 l 3167 961 l 3167 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 900 m 3063 780 l 3167 841 l 3167 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 780 m 3063 660 l 3167 721 l 3167 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2640 m 3167 2520 l 3270 2580 l 3270 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2520 m 3167 2400 l 3270 2460 l 3270 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2400 m 3167 2280 l 3270 2340 l 3270 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2280 m 3167 2160 l 3270 2220 l 3270 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2160 m 3167 2040 l 3270 2100 l 3270 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2040 m 3167 1920 l 3270 1980 l 3270 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1920 m 3167 1800 l 3270 1861 l 3270 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1800 m 3167 1680 l 3270 1741 l 3270 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1680 m 3167 1560 l 3270 1621 l 3270 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1560 m 3167 1440 l 3270 1501 l 3270 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1440 m 3167 1320 l 3270 1381 l 3270 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1320 m 3167 1200 l 3270 1261 l 3270 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1200 m 3167 1080 l 3270 1141 l 3270 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 1080 m 3167 960 l 3270 1021 l 3270 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 960 m 3167 840 l 3270 901 l 3270 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 840 m 3167 720 l 3270 781 l 3270 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2700 m 3270 2580 l 3374 2640 l 3374 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2580 m 3270 2460 l 3374 2520 l 3374 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2460 m 3270 2340 l 3374 2400 l 3374 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2340 m 3270 2220 l 3374 2280 l 3374 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2220 m 3270 2100 l 3374 2160 l 3374 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2100 m 3270 1980 l 3374 2040 l 3374 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1980 m 3270 1860 l 3374 1920 l 3374 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1860 m 3270 1740 l 3374 1801 l 3374 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1740 m 3270 1620 l 3374 1681 l 3374 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1620 m 3270 1500 l 3374 1561 l 3374 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1500 m 3270 1380 l 3374 1441 l 3374 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1380 m 3270 1260 l 3374 1321 l 3374 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1260 m 3270 1140 l 3374 1201 l 3374 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1140 m 3270 1020 l 3374 1081 l 3374 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 1020 m 3270 900 l 3374 961 l 3374 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 900 m 3270 780 l 3374 841 l 3374 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2760 m 3374 2640 l 3478 2700 l 3478 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2640 m 3374 2520 l 3478 2580 l 3478 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2520 m 3374 2400 l 3478 2460 l 3478 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2400 m 3374 2280 l 3478 2340 l 3478 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2280 m 3374 2160 l 3478 2220 l 3478 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2160 m 3374 2040 l 3478 2100 l 3478 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2040 m 3374 1920 l 3478 1980 l 3478 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1920 m 3374 1800 l 3478 1861 l 3478 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1800 m 3374 1680 l 3478 1741 l 3478 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1680 m 3374 1560 l 3478 1621 l 3478 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1560 m 3374 1440 l 3478 1501 l 3478 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1440 m 3374 1320 l 3478 1381 l 3478 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1320 m 3374 1200 l 3478 1261 l 3478 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1200 m 3374 1080 l 3478 1141 l 3478 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 1080 m 3374 960 l 3478 1021 l 3478 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 960 m 3374 840 l 3478 901 l 3478 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2820 m 3478 2700 l 3582 2760 l 3582 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2700 m 3478 2580 l 3582 2640 l 3582 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2580 m 3478 2460 l 3582 2520 l 3582 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2460 m 3478 2340 l 3582 2400 l 3582 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2340 m 3478 2220 l 3582 2280 l 3582 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2220 m 3478 2100 l 3582 2160 l 3582 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2100 m 3478 1980 l 3582 2040 l 3582 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1980 m 3478 1860 l 3582 1920 l 3582 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1860 m 3478 1740 l 3582 1801 l 3582 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1740 m 3478 1620 l 3582 1681 l 3582 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1620 m 3478 1500 l 3582 1561 l 3582 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1500 m 3478 1380 l 3582 1441 l 3582 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1380 m 3478 1260 l 3582 1321 l 3582 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1260 m 3478 1140 l 3582 1201 l 3582 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1140 m 3478 1020 l 3582 1081 l 3582 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 1020 m 3478 900 l 3582 961 l 3582 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 1440 m 2023 1501 l 1920 1560 l 1817 1500 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1817 1500 m 1920 1561 l 1817 1620 l 1713 1560 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1713 1920 m 1817 1980 l 1713 2039 l 1609 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1609 1980 m 1713 2040 l 1609 2099 l 1505 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1505 2160 m 1609 2220 l 1505 2279 l 1401 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2220 m 1505 2280 l 1401 2339 l 1297 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2280 m 1401 2340 l 1297 2399 l 1193 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2340 m 1297 2400 l 1193 2459 l 1089 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2400 m 1193 2460 l 1089 2519 l 985 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2460 m 1089 2520 l 985 2579 l 881 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2520 m 985 2580 l 881 2639 l 777 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2580 m 881 2640 l 777 2699 l 673 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2640 m 777 2700 l 673 2759 l 570 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2700 m 673 2760 l 570 2819 l 466 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2760 m 570 2820 l 466 2879 l 362 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 2820 m 466 2880 l 362 2939 l 258 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 1740 m 2127 1801 l 2023 1860 l 1920 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1920 1800 m 2023 1861 l 1920 1920 l 1817 1860 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1817 2100 m 1920 2160 l 1817 2219 l 1713 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2160 m 1817 2220 l 1713 2279 l 1609 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2220 m 1713 2280 l 1609 2339 l 1505 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2280 m 1609 2340 l 1505 2399 l 1401 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2340 m 1505 2400 l 1401 2459 l 1297 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2400 m 1401 2460 l 1297 2519 l 1193 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2460 m 1297 2520 l 1193 2579 l 1089 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2520 m 1193 2580 l 1089 2639 l 985 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2580 m 1089 2640 l 985 2699 l 881 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2640 m 985 2700 l 881 2759 l 777 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2700 m 881 2760 l 777 2819 l 673 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2760 m 777 2820 l 673 2879 l 570 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2820 m 673 2880 l 570 2939 l 466 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 2880 m 570 2940 l 466 2999 l 362 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 1920 m 2231 1980 l 2127 2039 l 2023 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 2023 2100 m 2127 2160 l 2023 2219 l 1920 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2160 m 2023 2220 l 1920 2279 l 1817 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2220 m 1920 2280 l 1817 2339 l 1713 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2280 m 1817 2340 l 1713 2399 l 1609 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2340 m 1713 2400 l 1609 2459 l 1505 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2400 m 1609 2460 l 1505 2519 l 1401 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2460 m 1505 2520 l 1401 2579 l 1297 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2520 m 1401 2580 l 1297 2639 l 1193 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2580 m 1297 2640 l 1193 2699 l 1089 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2640 m 1193 2700 l 1089 2759 l 985 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2700 m 1089 2760 l 985 2819 l 881 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2760 m 985 2820 l 881 2879 l 777 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2820 m 881 2880 l 777 2939 l 673 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 2880 m 777 2940 l 673 2999 l 570 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 2940 m 673 3000 l 570 3059 l 466 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2100 m 2335 2160 l 2231 2219 l 2127 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2160 m 2231 2220 l 2127 2279 l 2023 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2220 m 2127 2280 l 2023 2339 l 1920 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2280 m 2023 2340 l 1920 2399 l 1817 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2340 m 1920 2400 l 1817 2459 l 1713 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2400 m 1817 2460 l 1713 2519 l 1609 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2460 m 1713 2520 l 1609 2579 l 1505 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2520 m 1609 2580 l 1505 2639 l 1401 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2580 m 1505 2640 l 1401 2699 l 1297 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2640 m 1401 2700 l 1297 2759 l 1193 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2700 m 1297 2760 l 1193 2819 l 1089 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2760 m 1193 2820 l 1089 2879 l 985 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2820 m 1089 2880 l 985 2939 l 881 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 2880 m 985 2940 l 881 2999 l 777 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 2940 m 881 3000 l 777 3059 l 673 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 3000 m 777 3060 l 673 3119 l 570 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2160 m 2439 2220 l 2335 2279 l 2231 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2220 m 2335 2280 l 2231 2339 l 2127 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2280 m 2231 2340 l 2127 2399 l 2023 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2340 m 2127 2400 l 2023 2459 l 1920 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2400 m 2023 2460 l 1920 2519 l 1817 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2460 m 1920 2520 l 1817 2579 l 1713 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2520 m 1817 2580 l 1713 2639 l 1609 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2580 m 1713 2640 l 1609 2699 l 1505 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2640 m 1609 2700 l 1505 2759 l 1401 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2700 m 1505 2760 l 1401 2819 l 1297 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2760 m 1401 2820 l 1297 2879 l 1193 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2820 m 1297 2880 l 1193 2939 l 1089 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 2880 m 1193 2940 l 1089 2999 l 985 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 2940 m 1089 3000 l 985 3059 l 881 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 3000 m 985 3060 l 881 3119 l 777 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 3060 m 881 3120 l 777 3179 l 673 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2220 m 2543 2280 l 2439 2339 l 2335 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2280 m 2439 2340 l 2335 2399 l 2231 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2340 m 2335 2400 l 2231 2459 l 2127 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2400 m 2231 2460 l 2127 2519 l 2023 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2460 m 2127 2520 l 2023 2579 l 1920 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2520 m 2023 2580 l 1920 2639 l 1817 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2580 m 1920 2640 l 1817 2699 l 1713 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2640 m 1817 2700 l 1713 2759 l 1609 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2700 m 1713 2760 l 1609 2819 l 1505 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2760 m 1609 2820 l 1505 2879 l 1401 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2820 m 1505 2880 l 1401 2939 l 1297 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 2880 m 1401 2940 l 1297 2999 l 1193 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 2940 m 1297 3000 l 1193 3059 l 1089 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 3000 m 1193 3060 l 1089 3119 l 985 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 3060 m 1089 3120 l 985 3179 l 881 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 3120 m 985 3180 l 881 3239 l 777 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2280 m 2647 2340 l 2543 2399 l 2439 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2340 m 2543 2400 l 2439 2459 l 2335 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2400 m 2439 2460 l 2335 2519 l 2231 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2460 m 2335 2520 l 2231 2579 l 2127 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2520 m 2231 2580 l 2127 2639 l 2023 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2580 m 2127 2640 l 2023 2699 l 1920 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2640 m 2023 2700 l 1920 2759 l 1817 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2700 m 1920 2760 l 1817 2819 l 1713 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2760 m 1817 2820 l 1713 2879 l 1609 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2820 m 1713 2880 l 1609 2939 l 1505 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 2880 m 1609 2940 l 1505 2999 l 1401 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 2940 m 1505 3000 l 1401 3059 l 1297 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 3000 m 1401 3060 l 1297 3119 l 1193 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 3060 m 1297 3120 l 1193 3179 l 1089 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 3120 m 1193 3180 l 1089 3239 l 985 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 3180 m 1089 3240 l 985 3299 l 881 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2340 m 2751 2400 l 2647 2459 l 2543 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2400 m 2647 2460 l 2543 2519 l 2439 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2460 m 2543 2520 l 2439 2579 l 2335 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2520 m 2439 2580 l 2335 2639 l 2231 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2580 m 2335 2640 l 2231 2699 l 2127 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2640 m 2231 2700 l 2127 2759 l 2023 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2700 m 2127 2760 l 2023 2819 l 1920 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2760 m 2023 2820 l 1920 2879 l 1817 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2820 m 1920 2880 l 1817 2939 l 1713 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 2880 m 1817 2940 l 1713 2999 l 1609 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 2940 m 1713 3000 l 1609 3059 l 1505 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 3000 m 1609 3060 l 1505 3119 l 1401 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 3060 m 1505 3120 l 1401 3179 l 1297 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 3120 m 1401 3180 l 1297 3239 l 1193 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 3180 m 1297 3240 l 1193 3299 l 1089 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 3240 m 1193 3300 l 1089 3359 l 985 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2400 m 2855 2460 l 2751 2519 l 2647 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2460 m 2751 2520 l 2647 2579 l 2543 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2520 m 2647 2580 l 2543 2639 l 2439 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2580 m 2543 2640 l 2439 2699 l 2335 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2640 m 2439 2700 l 2335 2759 l 2231 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2700 m 2335 2760 l 2231 2819 l 2127 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2760 m 2231 2820 l 2127 2879 l 2023 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2820 m 2127 2880 l 2023 2939 l 1920 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 2880 m 2023 2940 l 1920 2999 l 1817 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 2940 m 1920 3000 l 1817 3059 l 1713 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3000 m 1817 3060 l 1713 3119 l 1609 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 3060 m 1713 3120 l 1609 3179 l 1505 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 3120 m 1609 3180 l 1505 3239 l 1401 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 3180 m 1505 3240 l 1401 3299 l 1297 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 3240 m 1401 3300 l 1297 3359 l 1193 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 3300 m 1297 3360 l 1193 3419 l 1089 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2460 m 2959 2520 l 2855 2579 l 2751 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2520 m 2855 2580 l 2751 2639 l 2647 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2580 m 2751 2640 l 2647 2699 l 2543 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2640 m 2647 2700 l 2543 2759 l 2439 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2700 m 2543 2760 l 2439 2819 l 2335 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2760 m 2439 2820 l 2335 2879 l 2231 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2820 m 2335 2880 l 2231 2939 l 2127 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 2880 m 2231 2940 l 2127 2999 l 2023 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 2940 m 2127 3000 l 2023 3059 l 1920 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3000 m 2023 3060 l 1920 3119 l 1817 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3060 m 1920 3120 l 1817 3179 l 1713 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3120 m 1817 3180 l 1713 3239 l 1609 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 3180 m 1713 3240 l 1609 3299 l 1505 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 3240 m 1609 3300 l 1505 3359 l 1401 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 3300 m 1505 3360 l 1401 3419 l 1297 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 3360 m 1401 3420 l 1297 3479 l 1193 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2520 m 3063 2580 l 2959 2639 l 2855 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2580 m 2959 2640 l 2855 2699 l 2751 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2640 m 2855 2700 l 2751 2759 l 2647 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2700 m 2751 2760 l 2647 2819 l 2543 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2760 m 2647 2820 l 2543 2879 l 2439 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2820 m 2543 2880 l 2439 2939 l 2335 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 2880 m 2439 2940 l 2335 2999 l 2231 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 2940 m 2335 3000 l 2231 3059 l 2127 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3000 m 2231 3060 l 2127 3119 l 2023 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3060 m 2127 3120 l 2023 3179 l 1920 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3120 m 2023 3180 l 1920 3239 l 1817 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3180 m 1920 3240 l 1817 3299 l 1713 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3240 m 1817 3300 l 1713 3359 l 1609 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 3300 m 1713 3360 l 1609 3419 l 1505 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 3360 m 1609 3420 l 1505 3479 l 1401 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 3420 m 1505 3480 l 1401 3539 l 1297 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2580 m 3167 2640 l 3063 2699 l 2959 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2640 m 3063 2700 l 2959 2759 l 2855 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2700 m 2959 2760 l 2855 2819 l 2751 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2760 m 2855 2820 l 2751 2879 l 2647 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2820 m 2751 2880 l 2647 2939 l 2543 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 2880 m 2647 2940 l 2543 2999 l 2439 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 2940 m 2543 3000 l 2439 3059 l 2335 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 3000 m 2439 3060 l 2335 3119 l 2231 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 3060 m 2335 3120 l 2231 3179 l 2127 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3120 m 2231 3180 l 2127 3239 l 2023 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3180 m 2127 3240 l 2023 3299 l 1920 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3240 m 2023 3300 l 1920 3359 l 1817 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3300 m 1920 3360 l 1817 3419 l 1713 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3360 m 1817 3420 l 1713 3479 l 1609 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 3420 m 1713 3480 l 1609 3539 l 1505 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 3480 m 1609 3540 l 1505 3599 l 1401 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2640 m 3270 2700 l 3167 2759 l 3063 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2700 m 3167 2760 l 3063 2819 l 2959 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2760 m 3063 2820 l 2959 2879 l 2855 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2820 m 2959 2880 l 2855 2939 l 2751 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 2880 m 2855 2940 l 2751 2999 l 2647 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 2940 m 2751 3000 l 2647 3059 l 2543 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 3000 m 2647 3060 l 2543 3119 l 2439 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 3060 m 2543 3120 l 2439 3179 l 2335 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 3120 m 2439 3180 l 2335 3239 l 2231 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 3180 m 2335 3240 l 2231 3299 l 2127 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3240 m 2231 3300 l 2127 3359 l 2023 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3300 m 2127 3360 l 2023 3419 l 1920 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3360 m 2023 3420 l 1920 3479 l 1817 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3420 m 1920 3480 l 1817 3539 l 1713 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3480 m 1817 3540 l 1713 3599 l 1609 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 3540 m 1713 3600 l 1609 3659 l 1505 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2700 m 3374 2760 l 3270 2819 l 3167 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2760 m 3270 2820 l 3167 2879 l 3063 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2820 m 3167 2880 l 3063 2939 l 2959 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 2880 m 3063 2940 l 2959 2999 l 2855 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 2940 m 2959 3000 l 2855 3059 l 2751 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 3000 m 2855 3060 l 2751 3119 l 2647 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 3060 m 2751 3120 l 2647 3179 l 2543 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 3120 m 2647 3180 l 2543 3239 l 2439 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 3180 m 2543 3240 l 2439 3299 l 2335 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 3240 m 2439 3300 l 2335 3359 l 2231 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 3300 m 2335 3360 l 2231 3419 l 2127 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3360 m 2231 3420 l 2127 3479 l 2023 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3420 m 2127 3480 l 2023 3539 l 1920 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3480 m 2023 3540 l 1920 3599 l 1817 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3540 m 1920 3600 l 1817 3659 l 1713 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 3600 m 1817 3660 l 1713 3719 l 1609 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2760 m 3478 2820 l 3374 2879 l 3270 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2820 m 3374 2880 l 3270 2939 l 3167 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 2880 m 3270 2940 l 3167 2999 l 3063 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 2940 m 3167 3000 l 3063 3059 l 2959 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 3000 m 3063 3060 l 2959 3119 l 2855 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 3060 m 2959 3120 l 2855 3179 l 2751 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 3120 m 2855 3180 l 2751 3239 l 2647 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 3180 m 2751 3240 l 2647 3299 l 2543 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 3240 m 2647 3300 l 2543 3359 l 2439 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 3300 m 2543 3360 l 2439 3419 l 2335 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 3360 m 2439 3420 l 2335 3479 l 2231 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 3420 m 2335 3480 l 2231 3539 l 2127 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3480 m 2231 3540 l 2127 3599 l 2023 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3540 m 2127 3600 l 2023 3659 l 1920 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3600 m 2023 3660 l 1920 3719 l 1817 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 3660 m 1920 3720 l 1817 3779 l 1713 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 2820 m 3582 2880 l 3478 2939 l 3374 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 2880 m 3478 2940 l 3374 2999 l 3270 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 2940 m 3374 3000 l 3270 3059 l 3167 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 3000 m 3270 3060 l 3167 3119 l 3063 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 3060 m 3167 3120 l 3063 3179 l 2959 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 3120 m 3063 3180 l 2959 3239 l 2855 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 3180 m 2959 3240 l 2855 3299 l 2751 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 3240 m 2855 3300 l 2751 3359 l 2647 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 3300 m 2751 3360 l 2647 3419 l 2543 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 3360 m 2647 3420 l 2543 3479 l 2439 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 3420 m 2543 3480 l 2439 3539 l 2335 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 3480 m 2439 3540 l 2335 3599 l 2231 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 3540 m 2335 3600 l 2231 3659 l 2127 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 3600 m 2231 3660 l 2127 3719 l 2023 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 3660 m 2127 3720 l 2023 3779 l 1920 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3720 m 2023 3780 l 1920 3839 l 1817 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2100 m 5967 2159 l 5967 2039 l 6071 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5967 1920 m 5863 1979 l 5863 1860 l 5967 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 1740 m 5760 1800 l 5760 1680 l 5863 1621 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 1560 m 5657 1620 l 5657 1500 l 5760 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1440 m 5657 1500 l 5657 1380 l 5760 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1320 m 5657 1380 l 5657 1260 l 5760 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1200 m 5657 1260 l 5657 1140 l 5760 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1080 m 5657 1140 l 5657 1020 l 5760 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 960 m 5657 1020 l 5657 900 l 5760 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 840 m 5657 900 l 5657 780 l 5760 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 720 m 5657 780 l 5657 660 l 5760 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 600 m 5657 660 l 5657 540 l 5760 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 480 m 5657 540 l 5657 420 l 5760 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 360 m 5657 420 l 5657 300 l 5760 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 240 m 5657 300 l 5657 180 l 5760 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 120 m 5657 180 l 5657 60 l 5760 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2100 m 5760 2159 l 5760 2039 l 5863 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 1980 m 5760 2039 l 5760 1920 l 5863 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 1800 m 5657 1860 l 5657 1740 l 5760 1681 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5657 1620 m 5553 1680 l 5553 1560 l 5657 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 1500 m 5553 1560 l 5553 1440 l 5657 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 1380 m 5553 1440 l 5553 1320 l 5657 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 1260 m 5553 1320 l 5553 1200 l 5657 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 1140 m 5553 1200 l 5553 1080 l 5657 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 1020 m 5553 1080 l 5553 960 l 5657 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 900 m 5553 960 l 5553 840 l 5657 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 780 m 5553 840 l 5553 720 l 5657 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 660 m 5553 720 l 5553 600 l 5657 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 540 m 5553 600 l 5553 480 l 5657 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 420 m 5553 480 l 5553 360 l 5657 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 300 m 5553 360 l 5553 240 l 5657 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 180 m 5553 240 l 5553 120 l 5657 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2160 m 5657 2219 l 5657 2099 l 5760 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5553 1920 m 5449 1979 l 5449 1860 l 5553 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1800 m 5449 1860 l 5449 1740 l 5553 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1680 m 5449 1740 l 5449 1620 l 5553 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1560 m 5449 1620 l 5449 1500 l 5553 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1440 m 5449 1500 l 5449 1380 l 5553 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1320 m 5449 1380 l 5449 1260 l 5553 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1200 m 5449 1260 l 5449 1140 l 5553 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 1080 m 5449 1140 l 5449 1020 l 5553 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 960 m 5449 1020 l 5449 900 l 5553 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 840 m 5449 900 l 5449 780 l 5553 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 720 m 5449 780 l 5449 660 l 5553 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 600 m 5449 660 l 5449 540 l 5553 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 480 m 5449 540 l 5449 420 l 5553 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 360 m 5449 420 l 5449 300 l 5553 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 240 m 5449 300 l 5449 180 l 5553 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2220 m 5553 2279 l 5553 2159 l 5657 2100 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5449 1980 m 5345 2039 l 5345 1920 l 5449 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1860 m 5345 1920 l 5345 1800 l 5449 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1740 m 5345 1800 l 5345 1680 l 5449 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1620 m 5345 1680 l 5345 1560 l 5449 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1500 m 5345 1560 l 5345 1440 l 5449 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1380 m 5345 1440 l 5345 1320 l 5449 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1260 m 5345 1320 l 5345 1200 l 5449 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1140 m 5345 1200 l 5345 1080 l 5449 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 1020 m 5345 1080 l 5345 960 l 5449 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 900 m 5345 960 l 5345 840 l 5449 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 780 m 5345 840 l 5345 720 l 5449 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 660 m 5345 720 l 5345 600 l 5449 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 540 m 5345 600 l 5345 480 l 5449 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 420 m 5345 480 l 5345 360 l 5449 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 300 m 5345 360 l 5345 240 l 5449 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2160 m 5241 2219 l 5241 2099 l 5345 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2040 m 5241 2099 l 5241 1979 l 5345 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1920 m 5241 1979 l 5241 1860 l 5345 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1800 m 5241 1860 l 5241 1740 l 5345 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1680 m 5241 1740 l 5241 1620 l 5345 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1560 m 5241 1620 l 5241 1500 l 5345 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1440 m 5241 1500 l 5241 1380 l 5345 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1320 m 5241 1380 l 5241 1260 l 5345 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1200 m 5241 1260 l 5241 1140 l 5345 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 1080 m 5241 1140 l 5241 1020 l 5345 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 960 m 5241 1020 l 5241 900 l 5345 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 840 m 5241 900 l 5241 780 l 5345 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 720 m 5241 780 l 5241 660 l 5345 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 600 m 5241 660 l 5241 540 l 5345 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 480 m 5241 540 l 5241 420 l 5345 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 360 m 5241 420 l 5241 300 l 5345 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2220 m 5137 2279 l 5137 2159 l 5241 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2100 m 5137 2159 l 5137 2039 l 5241 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1980 m 5137 2039 l 5137 1920 l 5241 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1860 m 5137 1920 l 5137 1800 l 5241 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1740 m 5137 1800 l 5137 1680 l 5241 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1620 m 5137 1680 l 5137 1560 l 5241 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1500 m 5137 1560 l 5137 1440 l 5241 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1380 m 5137 1440 l 5137 1320 l 5241 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1260 m 5137 1320 l 5137 1200 l 5241 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1140 m 5137 1200 l 5137 1080 l 5241 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 1020 m 5137 1080 l 5137 960 l 5241 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 900 m 5137 960 l 5137 840 l 5241 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 780 m 5137 840 l 5137 720 l 5241 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 660 m 5137 720 l 5137 600 l 5241 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 540 m 5137 600 l 5137 480 l 5241 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 420 m 5137 480 l 5137 360 l 5241 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2280 m 5033 2339 l 5033 2219 l 5137 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2160 m 5033 2219 l 5033 2099 l 5137 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2040 m 5033 2099 l 5033 1979 l 5137 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1920 m 5033 1979 l 5033 1860 l 5137 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1800 m 5033 1860 l 5033 1740 l 5137 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1680 m 5033 1740 l 5033 1620 l 5137 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1560 m 5033 1620 l 5033 1500 l 5137 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1440 m 5033 1500 l 5033 1380 l 5137 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1320 m 5033 1380 l 5033 1260 l 5137 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1200 m 5033 1260 l 5033 1140 l 5137 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 1080 m 5033 1140 l 5033 1020 l 5137 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 960 m 5033 1020 l 5033 900 l 5137 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 840 m 5033 900 l 5033 780 l 5137 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 720 m 5033 780 l 5033 660 l 5137 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 600 m 5033 660 l 5033 540 l 5137 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 480 m 5033 540 l 5033 420 l 5137 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2340 m 4929 2399 l 4929 2279 l 5033 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2220 m 4929 2279 l 4929 2159 l 5033 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2100 m 4929 2159 l 4929 2039 l 5033 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1980 m 4929 2039 l 4929 1920 l 5033 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1860 m 4929 1920 l 4929 1800 l 5033 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1740 m 4929 1800 l 4929 1680 l 5033 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1620 m 4929 1680 l 4929 1560 l 5033 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1500 m 4929 1560 l 4929 1440 l 5033 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1380 m 4929 1440 l 4929 1320 l 5033 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1260 m 4929 1320 l 4929 1200 l 5033 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1140 m 4929 1200 l 4929 1080 l 5033 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 1020 m 4929 1080 l 4929 960 l 5033 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 900 m 4929 960 l 4929 840 l 5033 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 780 m 4929 840 l 4929 720 l 5033 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 660 m 4929 720 l 4929 600 l 5033 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 540 m 4929 600 l 4929 480 l 5033 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2400 m 4825 2459 l 4825 2339 l 4929 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2280 m 4825 2339 l 4825 2219 l 4929 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2160 m 4825 2219 l 4825 2099 l 4929 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2040 m 4825 2099 l 4825 1979 l 4929 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1920 m 4825 1979 l 4825 1860 l 4929 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1800 m 4825 1860 l 4825 1740 l 4929 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1680 m 4825 1740 l 4825 1620 l 4929 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1560 m 4825 1620 l 4825 1500 l 4929 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1440 m 4825 1500 l 4825 1380 l 4929 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1320 m 4825 1380 l 4825 1260 l 4929 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1200 m 4825 1260 l 4825 1140 l 4929 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 1080 m 4825 1140 l 4825 1020 l 4929 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 960 m 4825 1020 l 4825 900 l 4929 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 840 m 4825 900 l 4825 780 l 4929 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 720 m 4825 780 l 4825 660 l 4929 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 600 m 4825 660 l 4825 540 l 4929 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2460 m 4721 2519 l 4721 2399 l 4825 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2340 m 4721 2399 l 4721 2279 l 4825 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2220 m 4721 2279 l 4721 2159 l 4825 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2100 m 4721 2159 l 4721 2039 l 4825 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1980 m 4721 2039 l 4721 1920 l 4825 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1860 m 4721 1920 l 4721 1800 l 4825 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1740 m 4721 1800 l 4721 1680 l 4825 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1620 m 4721 1680 l 4721 1560 l 4825 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1500 m 4721 1560 l 4721 1440 l 4825 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1380 m 4721 1440 l 4721 1320 l 4825 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1260 m 4721 1320 l 4721 1200 l 4825 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1140 m 4721 1200 l 4721 1080 l 4825 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 1020 m 4721 1080 l 4721 960 l 4825 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 900 m 4721 960 l 4721 840 l 4825 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 780 m 4721 840 l 4721 720 l 4825 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 660 m 4721 720 l 4721 600 l 4825 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2520 m 4617 2579 l 4617 2459 l 4721 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2400 m 4617 2459 l 4617 2339 l 4721 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2280 m 4617 2339 l 4617 2219 l 4721 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2160 m 4617 2219 l 4617 2099 l 4721 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2040 m 4617 2099 l 4617 1979 l 4721 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1920 m 4617 1979 l 4617 1860 l 4721 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1800 m 4617 1860 l 4617 1740 l 4721 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1680 m 4617 1740 l 4617 1620 l 4721 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1560 m 4617 1620 l 4617 1500 l 4721 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1440 m 4617 1500 l 4617 1380 l 4721 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1320 m 4617 1380 l 4617 1260 l 4721 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1200 m 4617 1260 l 4617 1140 l 4721 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 1080 m 4617 1140 l 4617 1020 l 4721 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 960 m 4617 1020 l 4617 900 l 4721 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 840 m 4617 900 l 4617 780 l 4721 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 720 m 4617 780 l 4617 660 l 4721 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2580 m 4513 2639 l 4513 2519 l 4617 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2460 m 4513 2519 l 4513 2399 l 4617 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2340 m 4513 2399 l 4513 2279 l 4617 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2220 m 4513 2279 l 4513 2159 l 4617 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2100 m 4513 2159 l 4513 2039 l 4617 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1980 m 4513 2039 l 4513 1920 l 4617 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1860 m 4513 1920 l 4513 1800 l 4617 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1740 m 4513 1800 l 4513 1680 l 4617 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1620 m 4513 1680 l 4513 1560 l 4617 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1500 m 4513 1560 l 4513 1440 l 4617 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1380 m 4513 1440 l 4513 1320 l 4617 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1260 m 4513 1320 l 4513 1200 l 4617 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1140 m 4513 1200 l 4513 1080 l 4617 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 1020 m 4513 1080 l 4513 960 l 4617 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 900 m 4513 960 l 4513 840 l 4617 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 780 m 4513 840 l 4513 720 l 4617 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2640 m 4410 2699 l 4410 2579 l 4513 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2520 m 4410 2579 l 4410 2459 l 4513 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2400 m 4410 2459 l 4410 2339 l 4513 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2280 m 4410 2339 l 4410 2219 l 4513 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2160 m 4410 2219 l 4410 2099 l 4513 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2040 m 4410 2099 l 4410 1979 l 4513 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1920 m 4410 1979 l 4410 1860 l 4513 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1800 m 4410 1860 l 4410 1740 l 4513 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1680 m 4410 1740 l 4410 1620 l 4513 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1560 m 4410 1620 l 4410 1500 l 4513 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1440 m 4410 1500 l 4410 1380 l 4513 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1320 m 4410 1380 l 4410 1260 l 4513 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1200 m 4410 1260 l 4410 1140 l 4513 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 1080 m 4410 1140 l 4410 1020 l 4513 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 960 m 4410 1020 l 4410 900 l 4513 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 840 m 4410 900 l 4410 780 l 4513 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2700 m 4306 2759 l 4306 2639 l 4410 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2580 m 4306 2639 l 4306 2519 l 4410 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2460 m 4306 2519 l 4306 2399 l 4410 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2340 m 4306 2399 l 4306 2279 l 4410 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2220 m 4306 2279 l 4306 2159 l 4410 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2100 m 4306 2159 l 4306 2039 l 4410 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1980 m 4306 2039 l 4306 1920 l 4410 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1860 m 4306 1920 l 4306 1800 l 4410 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1740 m 4306 1800 l 4306 1680 l 4410 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1620 m 4306 1680 l 4306 1560 l 4410 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1500 m 4306 1560 l 4306 1440 l 4410 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1380 m 4306 1440 l 4306 1320 l 4410 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1260 m 4306 1320 l 4306 1200 l 4410 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1140 m 4306 1200 l 4306 1080 l 4410 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 1020 m 4306 1080 l 4306 960 l 4410 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 900 m 4306 960 l 4306 840 l 4410 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2760 m 4202 2819 l 4202 2699 l 4306 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2640 m 4202 2699 l 4202 2579 l 4306 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2520 m 4202 2579 l 4202 2459 l 4306 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2400 m 4202 2459 l 4202 2339 l 4306 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2280 m 4202 2339 l 4202 2219 l 4306 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2160 m 4202 2219 l 4202 2099 l 4306 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2040 m 4202 2099 l 4202 1979 l 4306 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1920 m 4202 1979 l 4202 1860 l 4306 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1800 m 4202 1860 l 4202 1740 l 4306 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1680 m 4202 1740 l 4202 1620 l 4306 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1560 m 4202 1620 l 4202 1500 l 4306 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1440 m 4202 1500 l 4202 1380 l 4306 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1320 m 4202 1380 l 4202 1260 l 4306 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1200 m 4202 1260 l 4202 1140 l 4306 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 1080 m 4202 1140 l 4202 1020 l 4306 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 960 m 4202 1020 l 4202 900 l 4306 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2820 m 4098 2879 l 4098 2759 l 4202 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2700 m 4098 2759 l 4098 2639 l 4202 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2580 m 4098 2639 l 4098 2519 l 4202 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2460 m 4098 2519 l 4098 2399 l 4202 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2340 m 4098 2399 l 4098 2279 l 4202 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2220 m 4098 2279 l 4098 2159 l 4202 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2100 m 4098 2159 l 4098 2039 l 4202 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1980 m 4098 2039 l 4098 1920 l 4202 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1860 m 4098 1920 l 4098 1800 l 4202 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1740 m 4098 1800 l 4098 1680 l 4202 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1620 m 4098 1680 l 4098 1560 l 4202 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1500 m 4098 1560 l 4098 1440 l 4202 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1380 m 4098 1440 l 4098 1320 l 4202 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1260 m 4098 1320 l 4098 1200 l 4202 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1140 m 4098 1200 l 4098 1080 l 4202 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 1020 m 4098 1080 l 4098 960 l 4202 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2160 m 5345 2040 l 5449 2100 l 5449 2220 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5553 1920 m 5553 1800 l 5657 1861 l 5657 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5553 1800 m 5553 1680 l 5657 1741 l 5657 1861 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5760 1560 m 5760 1440 l 5863 1501 l 5863 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1440 m 5760 1320 l 5863 1381 l 5863 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1320 m 5760 1200 l 5863 1261 l 5863 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1200 m 5760 1080 l 5863 1141 l 5863 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1080 m 5760 960 l 5863 1021 l 5863 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 960 m 5760 840 l 5863 901 l 5863 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 840 m 5760 720 l 5863 781 l 5863 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 720 m 5760 600 l 5863 661 l 5863 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 600 m 5760 480 l 5863 541 l 5863 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 480 m 5760 360 l 5863 421 l 5863 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 360 m 5760 240 l 5863 301 l 5863 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 240 m 5760 120 l 5863 181 l 5863 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 120 m 5760 0 l 5863 61 l 5863 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2220 m 5449 2100 l 5553 2160 l 5553 2280 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5657 1980 m 5657 1860 l 5760 1920 l 5760 2040 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5863 1740 m 5863 1620 l 5967 1681 l 5967 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1620 m 5863 1500 l 5967 1561 l 5967 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1500 m 5863 1380 l 5967 1441 l 5967 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1380 m 5863 1260 l 5967 1321 l 5967 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1260 m 5863 1140 l 5967 1201 l 5967 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1140 m 5863 1020 l 5967 1081 l 5967 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1020 m 5863 900 l 5967 961 l 5967 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 900 m 5863 780 l 5967 841 l 5967 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 780 m 5863 660 l 5967 721 l 5967 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 660 m 5863 540 l 5967 601 l 5967 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 540 m 5863 420 l 5967 481 l 5967 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 420 m 5863 300 l 5967 361 l 5967 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 300 m 5863 180 l 5967 241 l 5967 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 180 m 5863 60 l 5967 121 l 5967 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2100 m 5863 1980 l 5967 2040 l 5967 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5967 1920 m 5967 1800 l 6071 1861 l 6071 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1800 m 5967 1680 l 6071 1741 l 6071 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1680 m 5967 1560 l 6071 1621 l 6071 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1560 m 5967 1440 l 6071 1501 l 6071 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1440 m 5967 1320 l 6071 1381 l 6071 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1320 m 5967 1200 l 6071 1261 l 6071 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1200 m 5967 1080 l 6071 1141 l 6071 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1080 m 5967 960 l 6071 1021 l 6071 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 960 m 5967 840 l 6071 901 l 6071 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 840 m 5967 720 l 6071 781 l 6071 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 720 m 5967 600 l 6071 661 l 6071 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 600 m 5967 480 l 6071 541 l 6071 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 480 m 5967 360 l 6071 421 l 6071 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 360 m 5967 240 l 6071 301 l 6071 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 240 m 5967 120 l 6071 181 l 6071 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2100 m 6071 1980 l 6175 2040 l 6175 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1980 m 6071 1860 l 6175 1920 l 6175 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1860 m 6071 1740 l 6175 1801 l 6175 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1740 m 6071 1620 l 6175 1681 l 6175 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1620 m 6071 1500 l 6175 1561 l 6175 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1500 m 6071 1380 l 6175 1441 l 6175 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1380 m 6071 1260 l 6175 1321 l 6175 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1260 m 6071 1140 l 6175 1201 l 6175 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1140 m 6071 1020 l 6175 1081 l 6175 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 1020 m 6071 900 l 6175 961 l 6175 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 900 m 6071 780 l 6175 841 l 6175 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 780 m 6071 660 l 6175 721 l 6175 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 660 m 6071 540 l 6175 601 l 6175 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 540 m 6071 420 l 6175 481 l 6175 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 420 m 6071 300 l 6175 361 l 6175 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 300 m 6071 180 l 6175 241 l 6175 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2160 m 6175 2040 l 6279 2100 l 6279 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2040 m 6175 1920 l 6279 1980 l 6279 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1920 m 6175 1800 l 6279 1861 l 6279 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1800 m 6175 1680 l 6279 1741 l 6279 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1680 m 6175 1560 l 6279 1621 l 6279 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1560 m 6175 1440 l 6279 1501 l 6279 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1440 m 6175 1320 l 6279 1381 l 6279 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1320 m 6175 1200 l 6279 1261 l 6279 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1200 m 6175 1080 l 6279 1141 l 6279 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 1080 m 6175 960 l 6279 1021 l 6279 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 960 m 6175 840 l 6279 901 l 6279 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 840 m 6175 720 l 6279 781 l 6279 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 720 m 6175 600 l 6279 661 l 6279 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 600 m 6175 480 l 6279 541 l 6279 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 480 m 6175 360 l 6279 421 l 6279 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 360 m 6175 240 l 6279 301 l 6279 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2220 m 6279 2100 l 6383 2160 l 6383 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2100 m 6279 1980 l 6383 2040 l 6383 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1980 m 6279 1860 l 6383 1920 l 6383 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1860 m 6279 1740 l 6383 1801 l 6383 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1740 m 6279 1620 l 6383 1681 l 6383 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1620 m 6279 1500 l 6383 1561 l 6383 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1500 m 6279 1380 l 6383 1441 l 6383 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1380 m 6279 1260 l 6383 1321 l 6383 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1260 m 6279 1140 l 6383 1201 l 6383 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1140 m 6279 1020 l 6383 1081 l 6383 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 1020 m 6279 900 l 6383 961 l 6383 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 900 m 6279 780 l 6383 841 l 6383 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 780 m 6279 660 l 6383 721 l 6383 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 660 m 6279 540 l 6383 601 l 6383 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 540 m 6279 420 l 6383 481 l 6383 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 420 m 6279 300 l 6383 361 l 6383 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2280 m 6383 2160 l 6487 2220 l 6487 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2160 m 6383 2040 l 6487 2100 l 6487 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2040 m 6383 1920 l 6487 1980 l 6487 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1920 m 6383 1800 l 6487 1861 l 6487 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1800 m 6383 1680 l 6487 1741 l 6487 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1680 m 6383 1560 l 6487 1621 l 6487 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1560 m 6383 1440 l 6487 1501 l 6487 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1440 m 6383 1320 l 6487 1381 l 6487 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1320 m 6383 1200 l 6487 1261 l 6487 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1200 m 6383 1080 l 6487 1141 l 6487 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 1080 m 6383 960 l 6487 1021 l 6487 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 960 m 6383 840 l 6487 901 l 6487 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 840 m 6383 720 l 6487 781 l 6487 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 720 m 6383 600 l 6487 661 l 6487 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 600 m 6383 480 l 6487 541 l 6487 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 480 m 6383 360 l 6487 421 l 6487 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2340 m 6487 2220 l 6591 2280 l 6591 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2220 m 6487 2100 l 6591 2160 l 6591 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2100 m 6487 1980 l 6591 2040 l 6591 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1980 m 6487 1860 l 6591 1920 l 6591 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1860 m 6487 1740 l 6591 1801 l 6591 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1740 m 6487 1620 l 6591 1681 l 6591 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1620 m 6487 1500 l 6591 1561 l 6591 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1500 m 6487 1380 l 6591 1441 l 6591 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1380 m 6487 1260 l 6591 1321 l 6591 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1260 m 6487 1140 l 6591 1201 l 6591 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1140 m 6487 1020 l 6591 1081 l 6591 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 1020 m 6487 900 l 6591 961 l 6591 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 900 m 6487 780 l 6591 841 l 6591 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 780 m 6487 660 l 6591 721 l 6591 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 660 m 6487 540 l 6591 601 l 6591 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 540 m 6487 420 l 6591 481 l 6591 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2400 m 6591 2280 l 6695 2340 l 6695 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2280 m 6591 2160 l 6695 2220 l 6695 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2160 m 6591 2040 l 6695 2100 l 6695 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2040 m 6591 1920 l 6695 1980 l 6695 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1920 m 6591 1800 l 6695 1861 l 6695 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1800 m 6591 1680 l 6695 1741 l 6695 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1680 m 6591 1560 l 6695 1621 l 6695 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1560 m 6591 1440 l 6695 1501 l 6695 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1440 m 6591 1320 l 6695 1381 l 6695 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1320 m 6591 1200 l 6695 1261 l 6695 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1200 m 6591 1080 l 6695 1141 l 6695 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 1080 m 6591 960 l 6695 1021 l 6695 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 960 m 6591 840 l 6695 901 l 6695 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 840 m 6591 720 l 6695 781 l 6695 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 720 m 6591 600 l 6695 661 l 6695 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 600 m 6591 480 l 6695 541 l 6695 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2460 m 6695 2340 l 6799 2400 l 6799 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2340 m 6695 2220 l 6799 2280 l 6799 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2220 m 6695 2100 l 6799 2160 l 6799 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2100 m 6695 1980 l 6799 2040 l 6799 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1980 m 6695 1860 l 6799 1920 l 6799 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1860 m 6695 1740 l 6799 1801 l 6799 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1740 m 6695 1620 l 6799 1681 l 6799 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1620 m 6695 1500 l 6799 1561 l 6799 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1500 m 6695 1380 l 6799 1441 l 6799 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1380 m 6695 1260 l 6799 1321 l 6799 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1260 m 6695 1140 l 6799 1201 l 6799 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1140 m 6695 1020 l 6799 1081 l 6799 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 1020 m 6695 900 l 6799 961 l 6799 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 900 m 6695 780 l 6799 841 l 6799 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 780 m 6695 660 l 6799 721 l 6799 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 660 m 6695 540 l 6799 601 l 6799 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2520 m 6799 2400 l 6903 2460 l 6903 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2400 m 6799 2280 l 6903 2340 l 6903 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2280 m 6799 2160 l 6903 2220 l 6903 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2160 m 6799 2040 l 6903 2100 l 6903 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2040 m 6799 1920 l 6903 1980 l 6903 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1920 m 6799 1800 l 6903 1861 l 6903 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1800 m 6799 1680 l 6903 1741 l 6903 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1680 m 6799 1560 l 6903 1621 l 6903 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1560 m 6799 1440 l 6903 1501 l 6903 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1440 m 6799 1320 l 6903 1381 l 6903 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1320 m 6799 1200 l 6903 1261 l 6903 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1200 m 6799 1080 l 6903 1141 l 6903 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 1080 m 6799 960 l 6903 1021 l 6903 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 960 m 6799 840 l 6903 901 l 6903 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 840 m 6799 720 l 6903 781 l 6903 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 720 m 6799 600 l 6903 661 l 6903 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2580 m 6903 2460 l 7007 2520 l 7007 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2460 m 6903 2340 l 7007 2400 l 7007 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2340 m 6903 2220 l 7007 2280 l 7007 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2220 m 6903 2100 l 7007 2160 l 7007 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2100 m 6903 1980 l 7007 2040 l 7007 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1980 m 6903 1860 l 7007 1920 l 7007 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1860 m 6903 1740 l 7007 1801 l 7007 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1740 m 6903 1620 l 7007 1681 l 7007 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1620 m 6903 1500 l 7007 1561 l 7007 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1500 m 6903 1380 l 7007 1441 l 7007 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1380 m 6903 1260 l 7007 1321 l 7007 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1260 m 6903 1140 l 7007 1201 l 7007 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1140 m 6903 1020 l 7007 1081 l 7007 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 1020 m 6903 900 l 7007 961 l 7007 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 900 m 6903 780 l 7007 841 l 7007 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 780 m 6903 660 l 7007 721 l 7007 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2640 m 7007 2520 l 7110 2580 l 7110 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2520 m 7007 2400 l 7110 2460 l 7110 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2400 m 7007 2280 l 7110 2340 l 7110 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2280 m 7007 2160 l 7110 2220 l 7110 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2160 m 7007 2040 l 7110 2100 l 7110 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2040 m 7007 1920 l 7110 1980 l 7110 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1920 m 7007 1800 l 7110 1861 l 7110 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1800 m 7007 1680 l 7110 1741 l 7110 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1680 m 7007 1560 l 7110 1621 l 7110 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1560 m 7007 1440 l 7110 1501 l 7110 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1440 m 7007 1320 l 7110 1381 l 7110 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1320 m 7007 1200 l 7110 1261 l 7110 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1200 m 7007 1080 l 7110 1141 l 7110 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 1080 m 7007 960 l 7110 1021 l 7110 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 960 m 7007 840 l 7110 901 l 7110 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 840 m 7007 720 l 7110 781 l 7110 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2700 m 7110 2580 l 7214 2640 l 7214 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2580 m 7110 2460 l 7214 2520 l 7214 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2460 m 7110 2340 l 7214 2400 l 7214 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2340 m 7110 2220 l 7214 2280 l 7214 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2220 m 7110 2100 l 7214 2160 l 7214 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2100 m 7110 1980 l 7214 2040 l 7214 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1980 m 7110 1860 l 7214 1920 l 7214 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1860 m 7110 1740 l 7214 1801 l 7214 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1740 m 7110 1620 l 7214 1681 l 7214 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1620 m 7110 1500 l 7214 1561 l 7214 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1500 m 7110 1380 l 7214 1441 l 7214 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1380 m 7110 1260 l 7214 1321 l 7214 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1260 m 7110 1140 l 7214 1201 l 7214 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1140 m 7110 1020 l 7214 1081 l 7214 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 1020 m 7110 900 l 7214 961 l 7214 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 900 m 7110 780 l 7214 841 l 7214 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2760 m 7214 2640 l 7318 2700 l 7318 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2640 m 7214 2520 l 7318 2580 l 7318 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2520 m 7214 2400 l 7318 2460 l 7318 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2400 m 7214 2280 l 7318 2340 l 7318 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2280 m 7214 2160 l 7318 2220 l 7318 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2160 m 7214 2040 l 7318 2100 l 7318 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2040 m 7214 1920 l 7318 1980 l 7318 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1920 m 7214 1800 l 7318 1861 l 7318 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1800 m 7214 1680 l 7318 1741 l 7318 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1680 m 7214 1560 l 7318 1621 l 7318 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1560 m 7214 1440 l 7318 1501 l 7318 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1440 m 7214 1320 l 7318 1381 l 7318 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1320 m 7214 1200 l 7318 1261 l 7318 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1200 m 7214 1080 l 7318 1141 l 7318 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 1080 m 7214 960 l 7318 1021 l 7318 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 960 m 7214 840 l 7318 901 l 7318 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2820 m 7318 2700 l 7422 2760 l 7422 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2700 m 7318 2580 l 7422 2640 l 7422 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2580 m 7318 2460 l 7422 2520 l 7422 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2460 m 7318 2340 l 7422 2400 l 7422 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2340 m 7318 2220 l 7422 2280 l 7422 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2220 m 7318 2100 l 7422 2160 l 7422 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2100 m 7318 1980 l 7422 2040 l 7422 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1980 m 7318 1860 l 7422 1920 l 7422 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1860 m 7318 1740 l 7422 1801 l 7422 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1740 m 7318 1620 l 7422 1681 l 7422 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1620 m 7318 1500 l 7422 1561 l 7422 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1500 m 7318 1380 l 7422 1441 l 7422 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1380 m 7318 1260 l 7422 1321 l 7422 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1260 m 7318 1140 l 7422 1201 l 7422 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1140 m 7318 1020 l 7422 1081 l 7422 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 1020 m 7318 900 l 7422 961 l 7422 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 1560 m 5863 1621 l 5760 1680 l 5657 1620 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5657 1620 m 5760 1681 l 5657 1740 l 5553 1680 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5553 1920 m 5657 1980 l 5553 2039 l 5449 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5449 1980 m 5553 2040 l 5449 2099 l 5345 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5345 2160 m 5449 2220 l 5345 2279 l 5241 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2220 m 5345 2280 l 5241 2339 l 5137 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2280 m 5241 2340 l 5137 2399 l 5033 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2340 m 5137 2400 l 5033 2459 l 4929 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2400 m 5033 2460 l 4929 2519 l 4825 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2460 m 4929 2520 l 4825 2579 l 4721 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2520 m 4825 2580 l 4721 2639 l 4617 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2580 m 4721 2640 l 4617 2699 l 4513 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2640 m 4617 2700 l 4513 2759 l 4410 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2700 m 4513 2760 l 4410 2819 l 4306 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2760 m 4410 2820 l 4306 2879 l 4202 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 2820 m 4306 2880 l 4202 2939 l 4098 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 1740 m 5967 1801 l 5863 1860 l 5760 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5760 1800 m 5863 1861 l 5760 1920 l 5657 1860 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5657 1980 m 5760 2040 l 5657 2099 l 5553 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5553 2040 m 5657 2100 l 5553 2159 l 5449 2099 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5449 2220 m 5553 2280 l 5449 2339 l 5345 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2280 m 5449 2340 l 5345 2399 l 5241 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2340 m 5345 2400 l 5241 2459 l 5137 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2400 m 5241 2460 l 5137 2519 l 5033 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2460 m 5137 2520 l 5033 2579 l 4929 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2520 m 5033 2580 l 4929 2639 l 4825 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2580 m 4929 2640 l 4825 2699 l 4721 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2640 m 4825 2700 l 4721 2759 l 4617 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2700 m 4721 2760 l 4617 2819 l 4513 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2760 m 4617 2820 l 4513 2879 l 4410 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2820 m 4513 2880 l 4410 2939 l 4306 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 2880 m 4410 2940 l 4306 2999 l 4202 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 1920 m 6071 1980 l 5967 2039 l 5863 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5863 2100 m 5967 2160 l 5863 2219 l 5760 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2160 m 5863 2220 l 5760 2279 l 5657 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2220 m 5760 2280 l 5657 2339 l 5553 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2280 m 5657 2340 l 5553 2399 l 5449 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2340 m 5553 2400 l 5449 2459 l 5345 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2400 m 5449 2460 l 5345 2519 l 5241 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2460 m 5345 2520 l 5241 2579 l 5137 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2520 m 5241 2580 l 5137 2639 l 5033 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2580 m 5137 2640 l 5033 2699 l 4929 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2640 m 5033 2700 l 4929 2759 l 4825 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2700 m 4929 2760 l 4825 2819 l 4721 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2760 m 4825 2820 l 4721 2879 l 4617 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2820 m 4721 2880 l 4617 2939 l 4513 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 2880 m 4617 2940 l 4513 2999 l 4410 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 2940 m 4513 3000 l 4410 3059 l 4306 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2100 m 6175 2160 l 6071 2219 l 5967 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2160 m 6071 2220 l 5967 2279 l 5863 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2220 m 5967 2280 l 5863 2339 l 5760 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2280 m 5863 2340 l 5760 2399 l 5657 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2340 m 5760 2400 l 5657 2459 l 5553 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2400 m 5657 2460 l 5553 2519 l 5449 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2460 m 5553 2520 l 5449 2579 l 5345 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2520 m 5449 2580 l 5345 2639 l 5241 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2580 m 5345 2640 l 5241 2699 l 5137 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2640 m 5241 2700 l 5137 2759 l 5033 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2700 m 5137 2760 l 5033 2819 l 4929 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2760 m 5033 2820 l 4929 2879 l 4825 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2820 m 4929 2880 l 4825 2939 l 4721 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 2880 m 4825 2940 l 4721 2999 l 4617 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 2940 m 4721 3000 l 4617 3059 l 4513 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 3000 m 4617 3060 l 4513 3119 l 4410 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2160 m 6279 2220 l 6175 2279 l 6071 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2220 m 6175 2280 l 6071 2339 l 5967 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2280 m 6071 2340 l 5967 2399 l 5863 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2340 m 5967 2400 l 5863 2459 l 5760 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2400 m 5863 2460 l 5760 2519 l 5657 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2460 m 5760 2520 l 5657 2579 l 5553 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2520 m 5657 2580 l 5553 2639 l 5449 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2580 m 5553 2640 l 5449 2699 l 5345 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2640 m 5449 2700 l 5345 2759 l 5241 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2700 m 5345 2760 l 5241 2819 l 5137 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2760 m 5241 2820 l 5137 2879 l 5033 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2820 m 5137 2880 l 5033 2939 l 4929 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 2880 m 5033 2940 l 4929 2999 l 4825 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 2940 m 4929 3000 l 4825 3059 l 4721 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 3000 m 4825 3060 l 4721 3119 l 4617 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 3060 m 4721 3120 l 4617 3179 l 4513 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2220 m 6383 2280 l 6279 2339 l 6175 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2280 m 6279 2340 l 6175 2399 l 6071 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2340 m 6175 2400 l 6071 2459 l 5967 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2400 m 6071 2460 l 5967 2519 l 5863 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2460 m 5967 2520 l 5863 2579 l 5760 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2520 m 5863 2580 l 5760 2639 l 5657 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2580 m 5760 2640 l 5657 2699 l 5553 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2640 m 5657 2700 l 5553 2759 l 5449 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2700 m 5553 2760 l 5449 2819 l 5345 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2760 m 5449 2820 l 5345 2879 l 5241 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2820 m 5345 2880 l 5241 2939 l 5137 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 2880 m 5241 2940 l 5137 2999 l 5033 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 2940 m 5137 3000 l 5033 3059 l 4929 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 3000 m 5033 3060 l 4929 3119 l 4825 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 3060 m 4929 3120 l 4825 3179 l 4721 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 3120 m 4825 3180 l 4721 3239 l 4617 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2280 m 6487 2340 l 6383 2399 l 6279 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2340 m 6383 2400 l 6279 2459 l 6175 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2400 m 6279 2460 l 6175 2519 l 6071 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2460 m 6175 2520 l 6071 2579 l 5967 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2520 m 6071 2580 l 5967 2639 l 5863 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2580 m 5967 2640 l 5863 2699 l 5760 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2640 m 5863 2700 l 5760 2759 l 5657 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2700 m 5760 2760 l 5657 2819 l 5553 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2760 m 5657 2820 l 5553 2879 l 5449 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2820 m 5553 2880 l 5449 2939 l 5345 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 2880 m 5449 2940 l 5345 2999 l 5241 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 2940 m 5345 3000 l 5241 3059 l 5137 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 3000 m 5241 3060 l 5137 3119 l 5033 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 3060 m 5137 3120 l 5033 3179 l 4929 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 3120 m 5033 3180 l 4929 3239 l 4825 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 3180 m 4929 3240 l 4825 3299 l 4721 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2340 m 6591 2400 l 6487 2459 l 6383 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2400 m 6487 2460 l 6383 2519 l 6279 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2460 m 6383 2520 l 6279 2579 l 6175 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2520 m 6279 2580 l 6175 2639 l 6071 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2580 m 6175 2640 l 6071 2699 l 5967 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2640 m 6071 2700 l 5967 2759 l 5863 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2700 m 5967 2760 l 5863 2819 l 5760 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2760 m 5863 2820 l 5760 2879 l 5657 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2820 m 5760 2880 l 5657 2939 l 5553 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 2880 m 5657 2940 l 5553 2999 l 5449 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 2940 m 5553 3000 l 5449 3059 l 5345 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 3000 m 5449 3060 l 5345 3119 l 5241 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 3060 m 5345 3120 l 5241 3179 l 5137 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 3120 m 5241 3180 l 5137 3239 l 5033 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 3180 m 5137 3240 l 5033 3299 l 4929 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 3240 m 5033 3300 l 4929 3359 l 4825 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2400 m 6695 2460 l 6591 2519 l 6487 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2460 m 6591 2520 l 6487 2579 l 6383 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2520 m 6487 2580 l 6383 2639 l 6279 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2580 m 6383 2640 l 6279 2699 l 6175 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2640 m 6279 2700 l 6175 2759 l 6071 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2700 m 6175 2760 l 6071 2819 l 5967 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2760 m 6071 2820 l 5967 2879 l 5863 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2820 m 5967 2880 l 5863 2939 l 5760 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 2880 m 5863 2940 l 5760 2999 l 5657 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 2940 m 5760 3000 l 5657 3059 l 5553 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3000 m 5657 3060 l 5553 3119 l 5449 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 3060 m 5553 3120 l 5449 3179 l 5345 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 3120 m 5449 3180 l 5345 3239 l 5241 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 3180 m 5345 3240 l 5241 3299 l 5137 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 3240 m 5241 3300 l 5137 3359 l 5033 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 3300 m 5137 3360 l 5033 3419 l 4929 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2460 m 6799 2520 l 6695 2579 l 6591 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2520 m 6695 2580 l 6591 2639 l 6487 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2580 m 6591 2640 l 6487 2699 l 6383 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2640 m 6487 2700 l 6383 2759 l 6279 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2700 m 6383 2760 l 6279 2819 l 6175 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2760 m 6279 2820 l 6175 2879 l 6071 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2820 m 6175 2880 l 6071 2939 l 5967 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 2880 m 6071 2940 l 5967 2999 l 5863 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 2940 m 5967 3000 l 5863 3059 l 5760 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3000 m 5863 3060 l 5760 3119 l 5657 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3060 m 5760 3120 l 5657 3179 l 5553 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3120 m 5657 3180 l 5553 3239 l 5449 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 3180 m 5553 3240 l 5449 3299 l 5345 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 3240 m 5449 3300 l 5345 3359 l 5241 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 3300 m 5345 3360 l 5241 3419 l 5137 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 3360 m 5241 3420 l 5137 3479 l 5033 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2520 m 6903 2580 l 6799 2639 l 6695 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2580 m 6799 2640 l 6695 2699 l 6591 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2640 m 6695 2700 l 6591 2759 l 6487 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2700 m 6591 2760 l 6487 2819 l 6383 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2760 m 6487 2820 l 6383 2879 l 6279 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2820 m 6383 2880 l 6279 2939 l 6175 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 2880 m 6279 2940 l 6175 2999 l 6071 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 2940 m 6175 3000 l 6071 3059 l 5967 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3000 m 6071 3060 l 5967 3119 l 5863 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3060 m 5967 3120 l 5863 3179 l 5760 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3120 m 5863 3180 l 5760 3239 l 5657 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3180 m 5760 3240 l 5657 3299 l 5553 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3240 m 5657 3300 l 5553 3359 l 5449 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 3300 m 5553 3360 l 5449 3419 l 5345 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 3360 m 5449 3420 l 5345 3479 l 5241 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 3420 m 5345 3480 l 5241 3539 l 5137 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2580 m 7007 2640 l 6903 2699 l 6799 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2640 m 6903 2700 l 6799 2759 l 6695 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2700 m 6799 2760 l 6695 2819 l 6591 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2760 m 6695 2820 l 6591 2879 l 6487 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2820 m 6591 2880 l 6487 2939 l 6383 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 2880 m 6487 2940 l 6383 2999 l 6279 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 2940 m 6383 3000 l 6279 3059 l 6175 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 3000 m 6279 3060 l 6175 3119 l 6071 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 3060 m 6175 3120 l 6071 3179 l 5967 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3120 m 6071 3180 l 5967 3239 l 5863 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3180 m 5967 3240 l 5863 3299 l 5760 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3240 m 5863 3300 l 5760 3359 l 5657 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3300 m 5760 3360 l 5657 3419 l 5553 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3360 m 5657 3420 l 5553 3479 l 5449 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 3420 m 5553 3480 l 5449 3539 l 5345 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 3480 m 5449 3540 l 5345 3599 l 5241 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2640 m 7110 2700 l 7007 2759 l 6903 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2700 m 7007 2760 l 6903 2819 l 6799 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2760 m 6903 2820 l 6799 2879 l 6695 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2820 m 6799 2880 l 6695 2939 l 6591 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 2880 m 6695 2940 l 6591 2999 l 6487 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 2940 m 6591 3000 l 6487 3059 l 6383 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 3000 m 6487 3060 l 6383 3119 l 6279 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 3060 m 6383 3120 l 6279 3179 l 6175 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 3120 m 6279 3180 l 6175 3239 l 6071 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 3180 m 6175 3240 l 6071 3299 l 5967 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3240 m 6071 3300 l 5967 3359 l 5863 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3300 m 5967 3360 l 5863 3419 l 5760 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3360 m 5863 3420 l 5760 3479 l 5657 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3420 m 5760 3480 l 5657 3539 l 5553 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3480 m 5657 3540 l 5553 3599 l 5449 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 3540 m 5553 3600 l 5449 3659 l 5345 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2700 m 7214 2760 l 7110 2819 l 7007 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2760 m 7110 2820 l 7007 2879 l 6903 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2820 m 7007 2880 l 6903 2939 l 6799 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 2880 m 6903 2940 l 6799 2999 l 6695 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 2940 m 6799 3000 l 6695 3059 l 6591 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 3000 m 6695 3060 l 6591 3119 l 6487 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 3060 m 6591 3120 l 6487 3179 l 6383 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 3120 m 6487 3180 l 6383 3239 l 6279 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 3180 m 6383 3240 l 6279 3299 l 6175 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 3240 m 6279 3300 l 6175 3359 l 6071 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 3300 m 6175 3360 l 6071 3419 l 5967 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3360 m 6071 3420 l 5967 3479 l 5863 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3420 m 5967 3480 l 5863 3539 l 5760 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3480 m 5863 3540 l 5760 3599 l 5657 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3540 m 5760 3600 l 5657 3659 l 5553 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 3600 m 5657 3660 l 5553 3719 l 5449 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2760 m 7318 2820 l 7214 2879 l 7110 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2820 m 7214 2880 l 7110 2939 l 7007 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 2880 m 7110 2940 l 7007 2999 l 6903 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 2940 m 7007 3000 l 6903 3059 l 6799 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 3000 m 6903 3060 l 6799 3119 l 6695 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 3060 m 6799 3120 l 6695 3179 l 6591 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 3120 m 6695 3180 l 6591 3239 l 6487 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 3180 m 6591 3240 l 6487 3299 l 6383 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 3240 m 6487 3300 l 6383 3359 l 6279 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 3300 m 6383 3360 l 6279 3419 l 6175 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 3360 m 6279 3420 l 6175 3479 l 6071 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 3420 m 6175 3480 l 6071 3539 l 5967 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3480 m 6071 3540 l 5967 3599 l 5863 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3540 m 5967 3600 l 5863 3659 l 5760 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3600 m 5863 3660 l 5760 3719 l 5657 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 3660 m 5760 3720 l 5657 3779 l 5553 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 2820 m 7422 2880 l 7318 2939 l 7214 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 2880 m 7318 2940 l 7214 2999 l 7110 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 2940 m 7214 3000 l 7110 3059 l 7007 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 3000 m 7110 3060 l 7007 3119 l 6903 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 3060 m 7007 3120 l 6903 3179 l 6799 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 3120 m 6903 3180 l 6799 3239 l 6695 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 3180 m 6799 3240 l 6695 3299 l 6591 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 3240 m 6695 3300 l 6591 3359 l 6487 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 3300 m 6591 3360 l 6487 3419 l 6383 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 3360 m 6487 3420 l 6383 3479 l 6279 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 3420 m 6383 3480 l 6279 3539 l 6175 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 3480 m 6279 3540 l 6175 3599 l 6071 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 3540 m 6175 3600 l 6071 3659 l 5967 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 3600 m 6071 3660 l 5967 3719 l 5863 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 3660 m 5967 3720 l 5863 3779 l 5760 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3720 m 5863 3780 l 5760 3839 l 5657 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2040 m 9703 2099 l 9703 1979 l 9807 1920 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9807 1920 m 9703 1979 l 9703 1860 l 9807 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9703 1740 m 9600 1800 l 9600 1680 l 9703 1621 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9703 1620 m 9600 1680 l 9600 1560 l 9703 1501 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9703 1500 m 9600 1560 l 9600 1440 l 9703 1381 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9600 1320 m 9497 1380 l 9497 1260 l 9600 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 1200 m 9497 1260 l 9497 1140 l 9600 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 1080 m 9497 1140 l 9497 1020 l 9600 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 960 m 9497 1020 l 9497 900 l 9600 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 840 m 9497 900 l 9497 780 l 9600 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 720 m 9497 780 l 9497 660 l 9600 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 600 m 9497 660 l 9497 540 l 9600 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 480 m 9497 540 l 9497 420 l 9600 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 360 m 9497 420 l 9497 300 l 9600 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 240 m 9497 300 l 9497 180 l 9600 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 120 m 9497 180 l 9497 60 l 9600 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2100 m 9600 2159 l 9600 2039 l 9703 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9703 1980 m 9600 2039 l 9600 1920 l 9703 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9600 1800 m 9497 1860 l 9497 1740 l 9600 1681 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9600 1680 m 9497 1740 l 9497 1620 l 9600 1561 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9497 1500 m 9393 1560 l 9393 1440 l 9497 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 1380 m 9393 1440 l 9393 1320 l 9497 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 1260 m 9393 1320 l 9393 1200 l 9497 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 1140 m 9393 1200 l 9393 1080 l 9497 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 1020 m 9393 1080 l 9393 960 l 9497 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 900 m 9393 960 l 9393 840 l 9497 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 780 m 9393 840 l 9393 720 l 9497 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 660 m 9393 720 l 9393 600 l 9497 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 540 m 9393 600 l 9393 480 l 9497 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 420 m 9393 480 l 9393 360 l 9497 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 300 m 9393 360 l 9393 240 l 9497 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 180 m 9393 240 l 9393 120 l 9497 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2100 m 9393 2159 l 9393 2039 l 9497 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9393 1920 m 9289 1979 l 9289 1860 l 9393 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1800 m 9289 1860 l 9289 1740 l 9393 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1680 m 9289 1740 l 9289 1620 l 9393 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1560 m 9289 1620 l 9289 1500 l 9393 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1440 m 9289 1500 l 9289 1380 l 9393 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1320 m 9289 1380 l 9289 1260 l 9393 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1200 m 9289 1260 l 9289 1140 l 9393 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 1080 m 9289 1140 l 9289 1020 l 9393 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 960 m 9289 1020 l 9289 900 l 9393 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 840 m 9289 900 l 9289 780 l 9393 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 720 m 9289 780 l 9289 660 l 9393 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 600 m 9289 660 l 9289 540 l 9393 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 480 m 9289 540 l 9289 420 l 9393 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 360 m 9289 420 l 9289 300 l 9393 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 240 m 9289 300 l 9289 180 l 9393 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2160 m 9289 2219 l 9289 2099 l 9393 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9289 1980 m 9185 2039 l 9185 1920 l 9289 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1860 m 9185 1920 l 9185 1800 l 9289 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1740 m 9185 1800 l 9185 1680 l 9289 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1620 m 9185 1680 l 9185 1560 l 9289 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1500 m 9185 1560 l 9185 1440 l 9289 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1380 m 9185 1440 l 9185 1320 l 9289 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1260 m 9185 1320 l 9185 1200 l 9289 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1140 m 9185 1200 l 9185 1080 l 9289 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 1020 m 9185 1080 l 9185 960 l 9289 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 900 m 9185 960 l 9185 840 l 9289 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 780 m 9185 840 l 9185 720 l 9289 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 660 m 9185 720 l 9185 600 l 9289 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 540 m 9185 600 l 9185 480 l 9289 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 420 m 9185 480 l 9185 360 l 9289 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 300 m 9185 360 l 9185 240 l 9289 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2160 m 9081 2219 l 9081 2099 l 9185 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2040 m 9081 2099 l 9081 1979 l 9185 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1920 m 9081 1979 l 9081 1860 l 9185 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1800 m 9081 1860 l 9081 1740 l 9185 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1680 m 9081 1740 l 9081 1620 l 9185 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1560 m 9081 1620 l 9081 1500 l 9185 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1440 m 9081 1500 l 9081 1380 l 9185 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1320 m 9081 1380 l 9081 1260 l 9185 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1200 m 9081 1260 l 9081 1140 l 9185 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 1080 m 9081 1140 l 9081 1020 l 9185 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 960 m 9081 1020 l 9081 900 l 9185 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 840 m 9081 900 l 9081 780 l 9185 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 720 m 9081 780 l 9081 660 l 9185 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 600 m 9081 660 l 9081 540 l 9185 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 480 m 9081 540 l 9081 420 l 9185 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 360 m 9081 420 l 9081 300 l 9185 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2220 m 8977 2279 l 8977 2159 l 9081 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2100 m 8977 2159 l 8977 2039 l 9081 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1980 m 8977 2039 l 8977 1920 l 9081 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1860 m 8977 1920 l 8977 1800 l 9081 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1740 m 8977 1800 l 8977 1680 l 9081 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1620 m 8977 1680 l 8977 1560 l 9081 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1500 m 8977 1560 l 8977 1440 l 9081 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1380 m 8977 1440 l 8977 1320 l 9081 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1260 m 8977 1320 l 8977 1200 l 9081 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1140 m 8977 1200 l 8977 1080 l 9081 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 1020 m 8977 1080 l 8977 960 l 9081 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 900 m 8977 960 l 8977 840 l 9081 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 780 m 8977 840 l 8977 720 l 9081 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 660 m 8977 720 l 8977 600 l 9081 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 540 m 8977 600 l 8977 480 l 9081 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 420 m 8977 480 l 8977 360 l 9081 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2280 m 8873 2339 l 8873 2219 l 8977 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2160 m 8873 2219 l 8873 2099 l 8977 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2040 m 8873 2099 l 8873 1979 l 8977 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1920 m 8873 1979 l 8873 1860 l 8977 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1800 m 8873 1860 l 8873 1740 l 8977 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1680 m 8873 1740 l 8873 1620 l 8977 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1560 m 8873 1620 l 8873 1500 l 8977 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1440 m 8873 1500 l 8873 1380 l 8977 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1320 m 8873 1380 l 8873 1260 l 8977 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1200 m 8873 1260 l 8873 1140 l 8977 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 1080 m 8873 1140 l 8873 1020 l 8977 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 960 m 8873 1020 l 8873 900 l 8977 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 840 m 8873 900 l 8873 780 l 8977 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 720 m 8873 780 l 8873 660 l 8977 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 600 m 8873 660 l 8873 540 l 8977 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 480 m 8873 540 l 8873 420 l 8977 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2340 m 8769 2399 l 8769 2279 l 8873 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2220 m 8769 2279 l 8769 2159 l 8873 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2100 m 8769 2159 l 8769 2039 l 8873 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1980 m 8769 2039 l 8769 1920 l 8873 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1860 m 8769 1920 l 8769 1800 l 8873 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1740 m 8769 1800 l 8769 1680 l 8873 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1620 m 8769 1680 l 8769 1560 l 8873 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1500 m 8769 1560 l 8769 1440 l 8873 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1380 m 8769 1440 l 8769 1320 l 8873 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1260 m 8769 1320 l 8769 1200 l 8873 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1140 m 8769 1200 l 8769 1080 l 8873 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 1020 m 8769 1080 l 8769 960 l 8873 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 900 m 8769 960 l 8769 840 l 8873 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 780 m 8769 840 l 8769 720 l 8873 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 660 m 8769 720 l 8769 600 l 8873 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 540 m 8769 600 l 8769 480 l 8873 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2400 m 8665 2459 l 8665 2339 l 8769 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2280 m 8665 2339 l 8665 2219 l 8769 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2160 m 8665 2219 l 8665 2099 l 8769 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2040 m 8665 2099 l 8665 1979 l 8769 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1920 m 8665 1979 l 8665 1860 l 8769 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1800 m 8665 1860 l 8665 1740 l 8769 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1680 m 8665 1740 l 8665 1620 l 8769 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1560 m 8665 1620 l 8665 1500 l 8769 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1440 m 8665 1500 l 8665 1380 l 8769 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1320 m 8665 1380 l 8665 1260 l 8769 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1200 m 8665 1260 l 8665 1140 l 8769 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 1080 m 8665 1140 l 8665 1020 l 8769 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 960 m 8665 1020 l 8665 900 l 8769 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 840 m 8665 900 l 8665 780 l 8769 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 720 m 8665 780 l 8665 660 l 8769 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 600 m 8665 660 l 8665 540 l 8769 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2460 m 8561 2519 l 8561 2399 l 8665 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2340 m 8561 2399 l 8561 2279 l 8665 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2220 m 8561 2279 l 8561 2159 l 8665 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2100 m 8561 2159 l 8561 2039 l 8665 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1980 m 8561 2039 l 8561 1920 l 8665 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1860 m 8561 1920 l 8561 1800 l 8665 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1740 m 8561 1800 l 8561 1680 l 8665 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1620 m 8561 1680 l 8561 1560 l 8665 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1500 m 8561 1560 l 8561 1440 l 8665 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1380 m 8561 1440 l 8561 1320 l 8665 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1260 m 8561 1320 l 8561 1200 l 8665 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1140 m 8561 1200 l 8561 1080 l 8665 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 1020 m 8561 1080 l 8561 960 l 8665 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 900 m 8561 960 l 8561 840 l 8665 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 780 m 8561 840 l 8561 720 l 8665 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 660 m 8561 720 l 8561 600 l 8665 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2520 m 8457 2579 l 8457 2459 l 8561 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2400 m 8457 2459 l 8457 2339 l 8561 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2280 m 8457 2339 l 8457 2219 l 8561 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2160 m 8457 2219 l 8457 2099 l 8561 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2040 m 8457 2099 l 8457 1979 l 8561 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1920 m 8457 1979 l 8457 1860 l 8561 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1800 m 8457 1860 l 8457 1740 l 8561 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1680 m 8457 1740 l 8457 1620 l 8561 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1560 m 8457 1620 l 8457 1500 l 8561 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1440 m 8457 1500 l 8457 1380 l 8561 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1320 m 8457 1380 l 8457 1260 l 8561 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1200 m 8457 1260 l 8457 1140 l 8561 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 1080 m 8457 1140 l 8457 1020 l 8561 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 960 m 8457 1020 l 8457 900 l 8561 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 840 m 8457 900 l 8457 780 l 8561 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 720 m 8457 780 l 8457 660 l 8561 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2580 m 8353 2639 l 8353 2519 l 8457 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2460 m 8353 2519 l 8353 2399 l 8457 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2340 m 8353 2399 l 8353 2279 l 8457 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2220 m 8353 2279 l 8353 2159 l 8457 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2100 m 8353 2159 l 8353 2039 l 8457 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1980 m 8353 2039 l 8353 1920 l 8457 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1860 m 8353 1920 l 8353 1800 l 8457 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1740 m 8353 1800 l 8353 1680 l 8457 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1620 m 8353 1680 l 8353 1560 l 8457 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1500 m 8353 1560 l 8353 1440 l 8457 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1380 m 8353 1440 l 8353 1320 l 8457 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1260 m 8353 1320 l 8353 1200 l 8457 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1140 m 8353 1200 l 8353 1080 l 8457 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 1020 m 8353 1080 l 8353 960 l 8457 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 900 m 8353 960 l 8353 840 l 8457 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 780 m 8353 840 l 8353 720 l 8457 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2640 m 8250 2699 l 8250 2579 l 8353 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2520 m 8250 2579 l 8250 2459 l 8353 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2400 m 8250 2459 l 8250 2339 l 8353 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2280 m 8250 2339 l 8250 2219 l 8353 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2160 m 8250 2219 l 8250 2099 l 8353 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2040 m 8250 2099 l 8250 1979 l 8353 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1920 m 8250 1979 l 8250 1860 l 8353 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1800 m 8250 1860 l 8250 1740 l 8353 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1680 m 8250 1740 l 8250 1620 l 8353 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1560 m 8250 1620 l 8250 1500 l 8353 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1440 m 8250 1500 l 8250 1380 l 8353 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1320 m 8250 1380 l 8250 1260 l 8353 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1200 m 8250 1260 l 8250 1140 l 8353 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 1080 m 8250 1140 l 8250 1020 l 8353 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 960 m 8250 1020 l 8250 900 l 8353 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 840 m 8250 900 l 8250 780 l 8353 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2700 m 8146 2759 l 8146 2639 l 8250 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2580 m 8146 2639 l 8146 2519 l 8250 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2460 m 8146 2519 l 8146 2399 l 8250 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2340 m 8146 2399 l 8146 2279 l 8250 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2220 m 8146 2279 l 8146 2159 l 8250 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2100 m 8146 2159 l 8146 2039 l 8250 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1980 m 8146 2039 l 8146 1920 l 8250 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1860 m 8146 1920 l 8146 1800 l 8250 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1740 m 8146 1800 l 8146 1680 l 8250 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1620 m 8146 1680 l 8146 1560 l 8250 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1500 m 8146 1560 l 8146 1440 l 8250 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1380 m 8146 1440 l 8146 1320 l 8250 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1260 m 8146 1320 l 8146 1200 l 8250 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1140 m 8146 1200 l 8146 1080 l 8250 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 1020 m 8146 1080 l 8146 960 l 8250 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 900 m 8146 960 l 8146 840 l 8250 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2760 m 8042 2819 l 8042 2699 l 8146 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2640 m 8042 2699 l 8042 2579 l 8146 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2520 m 8042 2579 l 8042 2459 l 8146 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2400 m 8042 2459 l 8042 2339 l 8146 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2280 m 8042 2339 l 8042 2219 l 8146 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2160 m 8042 2219 l 8042 2099 l 8146 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2040 m 8042 2099 l 8042 1979 l 8146 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1920 m 8042 1979 l 8042 1860 l 8146 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1800 m 8042 1860 l 8042 1740 l 8146 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1680 m 8042 1740 l 8042 1620 l 8146 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1560 m 8042 1620 l 8042 1500 l 8146 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1440 m 8042 1500 l 8042 1380 l 8146 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1320 m 8042 1380 l 8042 1260 l 8146 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1200 m 8042 1260 l 8042 1140 l 8146 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 1080 m 8042 1140 l 8042 1020 l 8146 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 960 m 8042 1020 l 8042 900 l 8146 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2820 m 7938 2879 l 7938 2759 l 8042 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2700 m 7938 2759 l 7938 2639 l 8042 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2580 m 7938 2639 l 7938 2519 l 8042 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2460 m 7938 2519 l 7938 2399 l 8042 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2340 m 7938 2399 l 7938 2279 l 8042 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2220 m 7938 2279 l 7938 2159 l 8042 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2100 m 7938 2159 l 7938 2039 l 8042 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1980 m 7938 2039 l 7938 1920 l 8042 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1860 m 7938 1920 l 7938 1800 l 8042 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1740 m 7938 1800 l 7938 1680 l 8042 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1620 m 7938 1680 l 7938 1560 l 8042 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1500 m 7938 1560 l 7938 1440 l 8042 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1380 m 7938 1440 l 7938 1320 l 8042 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1260 m 7938 1320 l 7938 1200 l 8042 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1140 m 7938 1200 l 7938 1080 l 8042 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 1020 m 7938 1080 l 7938 960 l 8042 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2160 m 9185 2040 l 9289 2100 l 9289 2220 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9393 1920 m 9393 1800 l 9497 1861 l 9497 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9393 1800 m 9393 1680 l 9497 1741 l 9497 1861 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9393 1680 m 9393 1560 l 9497 1621 l 9497 1741 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9497 1500 m 9497 1380 l 9600 1441 l 9600 1561 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9600 1320 m 9600 1200 l 9703 1261 l 9703 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 1200 m 9600 1080 l 9703 1141 l 9703 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 1080 m 9600 960 l 9703 1021 l 9703 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 960 m 9600 840 l 9703 901 l 9703 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 840 m 9600 720 l 9703 781 l 9703 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 720 m 9600 600 l 9703 661 l 9703 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 600 m 9600 480 l 9703 541 l 9703 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 480 m 9600 360 l 9703 421 l 9703 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 360 m 9600 240 l 9703 301 l 9703 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 240 m 9600 120 l 9703 181 l 9703 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 120 m 9600 0 l 9703 61 l 9703 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2100 m 9497 1980 l 9600 2040 l 9600 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9497 1980 m 9497 1860 l 9600 1920 l 9600 2040 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9703 1740 m 9703 1620 l 9807 1681 l 9807 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1620 m 9703 1500 l 9807 1561 l 9807 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1500 m 9703 1380 l 9807 1441 l 9807 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1380 m 9703 1260 l 9807 1321 l 9807 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1260 m 9703 1140 l 9807 1201 l 9807 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1140 m 9703 1020 l 9807 1081 l 9807 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1020 m 9703 900 l 9807 961 l 9807 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 900 m 9703 780 l 9807 841 l 9807 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 780 m 9703 660 l 9807 721 l 9807 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 660 m 9703 540 l 9807 601 l 9807 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 540 m 9703 420 l 9807 481 l 9807 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 420 m 9703 300 l 9807 361 l 9807 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 300 m 9703 180 l 9807 241 l 9807 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 180 m 9703 60 l 9807 121 l 9807 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2040 m 9807 1920 l 9911 1980 l 9911 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1920 m 9807 1800 l 9911 1861 l 9911 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1800 m 9807 1680 l 9911 1741 l 9911 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1680 m 9807 1560 l 9911 1621 l 9911 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1560 m 9807 1440 l 9911 1501 l 9911 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1440 m 9807 1320 l 9911 1381 l 9911 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1320 m 9807 1200 l 9911 1261 l 9911 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1200 m 9807 1080 l 9911 1141 l 9911 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 1080 m 9807 960 l 9911 1021 l 9911 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 960 m 9807 840 l 9911 901 l 9911 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 840 m 9807 720 l 9911 781 l 9911 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 720 m 9807 600 l 9911 661 l 9911 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 600 m 9807 480 l 9911 541 l 9911 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 480 m 9807 360 l 9911 421 l 9911 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 360 m 9807 240 l 9911 301 l 9911 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 240 m 9807 120 l 9911 181 l 9911 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2100 m 9911 1980 l 10015 2040 l 10015 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1980 m 9911 1860 l 10015 1920 l 10015 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1860 m 9911 1740 l 10015 1801 l 10015 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1740 m 9911 1620 l 10015 1681 l 10015 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1620 m 9911 1500 l 10015 1561 l 10015 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1500 m 9911 1380 l 10015 1441 l 10015 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1380 m 9911 1260 l 10015 1321 l 10015 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1260 m 9911 1140 l 10015 1201 l 10015 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1140 m 9911 1020 l 10015 1081 l 10015 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 1020 m 9911 900 l 10015 961 l 10015 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 900 m 9911 780 l 10015 841 l 10015 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 780 m 9911 660 l 10015 721 l 10015 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 660 m 9911 540 l 10015 601 l 10015 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 540 m 9911 420 l 10015 481 l 10015 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 420 m 9911 300 l 10015 361 l 10015 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 300 m 9911 180 l 10015 241 l 10015 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2160 m 10015 2040 l 10119 2100 l 10119 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2040 m 10015 1920 l 10119 1980 l 10119 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1920 m 10015 1800 l 10119 1861 l 10119 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1800 m 10015 1680 l 10119 1741 l 10119 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1680 m 10015 1560 l 10119 1621 l 10119 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1560 m 10015 1440 l 10119 1501 l 10119 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1440 m 10015 1320 l 10119 1381 l 10119 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1320 m 10015 1200 l 10119 1261 l 10119 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1200 m 10015 1080 l 10119 1141 l 10119 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 1080 m 10015 960 l 10119 1021 l 10119 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 960 m 10015 840 l 10119 901 l 10119 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 840 m 10015 720 l 10119 781 l 10119 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 720 m 10015 600 l 10119 661 l 10119 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 600 m 10015 480 l 10119 541 l 10119 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 480 m 10015 360 l 10119 421 l 10119 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 360 m 10015 240 l 10119 301 l 10119 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2220 m 10119 2100 l 10223 2160 l 10223 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2100 m 10119 1980 l 10223 2040 l 10223 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1980 m 10119 1860 l 10223 1920 l 10223 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1860 m 10119 1740 l 10223 1801 l 10223 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1740 m 10119 1620 l 10223 1681 l 10223 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1620 m 10119 1500 l 10223 1561 l 10223 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1500 m 10119 1380 l 10223 1441 l 10223 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1380 m 10119 1260 l 10223 1321 l 10223 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1260 m 10119 1140 l 10223 1201 l 10223 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1140 m 10119 1020 l 10223 1081 l 10223 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 1020 m 10119 900 l 10223 961 l 10223 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 900 m 10119 780 l 10223 841 l 10223 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 780 m 10119 660 l 10223 721 l 10223 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 660 m 10119 540 l 10223 601 l 10223 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 540 m 10119 420 l 10223 481 l 10223 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 420 m 10119 300 l 10223 361 l 10223 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2280 m 10223 2160 l 10327 2220 l 10327 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2160 m 10223 2040 l 10327 2100 l 10327 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2040 m 10223 1920 l 10327 1980 l 10327 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1920 m 10223 1800 l 10327 1861 l 10327 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1800 m 10223 1680 l 10327 1741 l 10327 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1680 m 10223 1560 l 10327 1621 l 10327 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1560 m 10223 1440 l 10327 1501 l 10327 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1440 m 10223 1320 l 10327 1381 l 10327 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1320 m 10223 1200 l 10327 1261 l 10327 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1200 m 10223 1080 l 10327 1141 l 10327 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 1080 m 10223 960 l 10327 1021 l 10327 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 960 m 10223 840 l 10327 901 l 10327 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 840 m 10223 720 l 10327 781 l 10327 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 720 m 10223 600 l 10327 661 l 10327 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 600 m 10223 480 l 10327 541 l 10327 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 480 m 10223 360 l 10327 421 l 10327 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2340 m 10327 2220 l 10431 2280 l 10431 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2220 m 10327 2100 l 10431 2160 l 10431 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2100 m 10327 1980 l 10431 2040 l 10431 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1980 m 10327 1860 l 10431 1920 l 10431 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1860 m 10327 1740 l 10431 1801 l 10431 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1740 m 10327 1620 l 10431 1681 l 10431 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1620 m 10327 1500 l 10431 1561 l 10431 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1500 m 10327 1380 l 10431 1441 l 10431 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1380 m 10327 1260 l 10431 1321 l 10431 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1260 m 10327 1140 l 10431 1201 l 10431 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1140 m 10327 1020 l 10431 1081 l 10431 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 1020 m 10327 900 l 10431 961 l 10431 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 900 m 10327 780 l 10431 841 l 10431 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 780 m 10327 660 l 10431 721 l 10431 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 660 m 10327 540 l 10431 601 l 10431 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 540 m 10327 420 l 10431 481 l 10431 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2400 m 10431 2280 l 10535 2340 l 10535 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2280 m 10431 2160 l 10535 2220 l 10535 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2160 m 10431 2040 l 10535 2100 l 10535 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2040 m 10431 1920 l 10535 1980 l 10535 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1920 m 10431 1800 l 10535 1861 l 10535 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1800 m 10431 1680 l 10535 1741 l 10535 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1680 m 10431 1560 l 10535 1621 l 10535 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1560 m 10431 1440 l 10535 1501 l 10535 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1440 m 10431 1320 l 10535 1381 l 10535 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1320 m 10431 1200 l 10535 1261 l 10535 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1200 m 10431 1080 l 10535 1141 l 10535 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 1080 m 10431 960 l 10535 1021 l 10535 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 960 m 10431 840 l 10535 901 l 10535 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 840 m 10431 720 l 10535 781 l 10535 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 720 m 10431 600 l 10535 661 l 10535 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 600 m 10431 480 l 10535 541 l 10535 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2460 m 10535 2340 l 10639 2400 l 10639 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2340 m 10535 2220 l 10639 2280 l 10639 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2220 m 10535 2100 l 10639 2160 l 10639 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2100 m 10535 1980 l 10639 2040 l 10639 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1980 m 10535 1860 l 10639 1920 l 10639 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1860 m 10535 1740 l 10639 1801 l 10639 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1740 m 10535 1620 l 10639 1681 l 10639 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1620 m 10535 1500 l 10639 1561 l 10639 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1500 m 10535 1380 l 10639 1441 l 10639 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1380 m 10535 1260 l 10639 1321 l 10639 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1260 m 10535 1140 l 10639 1201 l 10639 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1140 m 10535 1020 l 10639 1081 l 10639 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 1020 m 10535 900 l 10639 961 l 10639 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 900 m 10535 780 l 10639 841 l 10639 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 780 m 10535 660 l 10639 721 l 10639 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 660 m 10535 540 l 10639 601 l 10639 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2520 m 10639 2400 l 10743 2460 l 10743 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2400 m 10639 2280 l 10743 2340 l 10743 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2280 m 10639 2160 l 10743 2220 l 10743 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2160 m 10639 2040 l 10743 2100 l 10743 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2040 m 10639 1920 l 10743 1980 l 10743 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1920 m 10639 1800 l 10743 1861 l 10743 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1800 m 10639 1680 l 10743 1741 l 10743 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1680 m 10639 1560 l 10743 1621 l 10743 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1560 m 10639 1440 l 10743 1501 l 10743 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1440 m 10639 1320 l 10743 1381 l 10743 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1320 m 10639 1200 l 10743 1261 l 10743 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1200 m 10639 1080 l 10743 1141 l 10743 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 1080 m 10639 960 l 10743 1021 l 10743 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 960 m 10639 840 l 10743 901 l 10743 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 840 m 10639 720 l 10743 781 l 10743 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 720 m 10639 600 l 10743 661 l 10743 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2580 m 10743 2460 l 10847 2520 l 10847 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2460 m 10743 2340 l 10847 2400 l 10847 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2340 m 10743 2220 l 10847 2280 l 10847 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2220 m 10743 2100 l 10847 2160 l 10847 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2100 m 10743 1980 l 10847 2040 l 10847 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1980 m 10743 1860 l 10847 1920 l 10847 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1860 m 10743 1740 l 10847 1801 l 10847 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1740 m 10743 1620 l 10847 1681 l 10847 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1620 m 10743 1500 l 10847 1561 l 10847 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1500 m 10743 1380 l 10847 1441 l 10847 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1380 m 10743 1260 l 10847 1321 l 10847 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1260 m 10743 1140 l 10847 1201 l 10847 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1140 m 10743 1020 l 10847 1081 l 10847 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 1020 m 10743 900 l 10847 961 l 10847 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 900 m 10743 780 l 10847 841 l 10847 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 780 m 10743 660 l 10847 721 l 10847 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2640 m 10847 2520 l 10950 2580 l 10950 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2520 m 10847 2400 l 10950 2460 l 10950 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2400 m 10847 2280 l 10950 2340 l 10950 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2280 m 10847 2160 l 10950 2220 l 10950 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2160 m 10847 2040 l 10950 2100 l 10950 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2040 m 10847 1920 l 10950 1980 l 10950 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1920 m 10847 1800 l 10950 1861 l 10950 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1800 m 10847 1680 l 10950 1741 l 10950 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1680 m 10847 1560 l 10950 1621 l 10950 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1560 m 10847 1440 l 10950 1501 l 10950 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1440 m 10847 1320 l 10950 1381 l 10950 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1320 m 10847 1200 l 10950 1261 l 10950 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1200 m 10847 1080 l 10950 1141 l 10950 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 1080 m 10847 960 l 10950 1021 l 10950 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 960 m 10847 840 l 10950 901 l 10950 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 840 m 10847 720 l 10950 781 l 10950 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2700 m 10950 2580 l 11054 2640 l 11054 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2580 m 10950 2460 l 11054 2520 l 11054 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2460 m 10950 2340 l 11054 2400 l 11054 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2340 m 10950 2220 l 11054 2280 l 11054 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2220 m 10950 2100 l 11054 2160 l 11054 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2100 m 10950 1980 l 11054 2040 l 11054 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1980 m 10950 1860 l 11054 1920 l 11054 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1860 m 10950 1740 l 11054 1801 l 11054 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1740 m 10950 1620 l 11054 1681 l 11054 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1620 m 10950 1500 l 11054 1561 l 11054 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1500 m 10950 1380 l 11054 1441 l 11054 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1380 m 10950 1260 l 11054 1321 l 11054 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1260 m 10950 1140 l 11054 1201 l 11054 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1140 m 10950 1020 l 11054 1081 l 11054 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 1020 m 10950 900 l 11054 961 l 11054 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 900 m 10950 780 l 11054 841 l 11054 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2760 m 11054 2640 l 11158 2700 l 11158 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2640 m 11054 2520 l 11158 2580 l 11158 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2520 m 11054 2400 l 11158 2460 l 11158 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2400 m 11054 2280 l 11158 2340 l 11158 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2280 m 11054 2160 l 11158 2220 l 11158 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2160 m 11054 2040 l 11158 2100 l 11158 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2040 m 11054 1920 l 11158 1980 l 11158 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1920 m 11054 1800 l 11158 1861 l 11158 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1800 m 11054 1680 l 11158 1741 l 11158 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1680 m 11054 1560 l 11158 1621 l 11158 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1560 m 11054 1440 l 11158 1501 l 11158 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1440 m 11054 1320 l 11158 1381 l 11158 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1320 m 11054 1200 l 11158 1261 l 11158 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1200 m 11054 1080 l 11158 1141 l 11158 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 1080 m 11054 960 l 11158 1021 l 11158 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 960 m 11054 840 l 11158 901 l 11158 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2820 m 11158 2700 l 11262 2760 l 11262 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2700 m 11158 2580 l 11262 2640 l 11262 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2580 m 11158 2460 l 11262 2520 l 11262 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2460 m 11158 2340 l 11262 2400 l 11262 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2340 m 11158 2220 l 11262 2280 l 11262 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2220 m 11158 2100 l 11262 2160 l 11262 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2100 m 11158 1980 l 11262 2040 l 11262 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1980 m 11158 1860 l 11262 1920 l 11262 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1860 m 11158 1740 l 11262 1801 l 11262 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1740 m 11158 1620 l 11262 1681 l 11262 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1620 m 11158 1500 l 11262 1561 l 11262 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1500 m 11158 1380 l 11262 1441 l 11262 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1380 m 11158 1260 l 11262 1321 l 11262 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1260 m 11158 1140 l 11262 1201 l 11262 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1140 m 11158 1020 l 11262 1081 l 11262 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 1020 m 11158 900 l 11262 961 l 11262 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 1320 m 9703 1381 l 9600 1440 l 9497 1380 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9497 1500 m 9600 1561 l 9497 1620 l 9393 1560 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9393 1920 m 9497 1980 l 9393 2039 l 9289 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9289 1980 m 9393 2040 l 9289 2099 l 9185 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9185 2160 m 9289 2220 l 9185 2279 l 9081 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2220 m 9185 2280 l 9081 2339 l 8977 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2280 m 9081 2340 l 8977 2399 l 8873 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2340 m 8977 2400 l 8873 2459 l 8769 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2400 m 8873 2460 l 8769 2519 l 8665 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2460 m 8769 2520 l 8665 2579 l 8561 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2520 m 8665 2580 l 8561 2639 l 8457 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2580 m 8561 2640 l 8457 2699 l 8353 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2640 m 8457 2700 l 8353 2759 l 8250 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2700 m 8353 2760 l 8250 2819 l 8146 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2760 m 8250 2820 l 8146 2879 l 8042 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 2820 m 8146 2880 l 8042 2939 l 7938 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 1740 m 9807 1801 l 9703 1860 l 9600 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9600 1800 m 9703 1861 l 9600 1920 l 9497 1860 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9497 2100 m 9600 2160 l 9497 2219 l 9393 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2160 m 9497 2220 l 9393 2279 l 9289 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2220 m 9393 2280 l 9289 2339 l 9185 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2280 m 9289 2340 l 9185 2399 l 9081 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2340 m 9185 2400 l 9081 2459 l 8977 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2400 m 9081 2460 l 8977 2519 l 8873 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2460 m 8977 2520 l 8873 2579 l 8769 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2520 m 8873 2580 l 8769 2639 l 8665 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2580 m 8769 2640 l 8665 2699 l 8561 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2640 m 8665 2700 l 8561 2759 l 8457 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2700 m 8561 2760 l 8457 2819 l 8353 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2760 m 8457 2820 l 8353 2879 l 8250 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2820 m 8353 2880 l 8250 2939 l 8146 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 2880 m 8250 2940 l 8146 2999 l 8042 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2040 m 9911 2100 l 9807 2159 l 9703 2099 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2100 m 9807 2160 l 9703 2219 l 9600 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2160 m 9703 2220 l 9600 2279 l 9497 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2220 m 9600 2280 l 9497 2339 l 9393 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2280 m 9497 2340 l 9393 2399 l 9289 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2340 m 9393 2400 l 9289 2459 l 9185 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2400 m 9289 2460 l 9185 2519 l 9081 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2460 m 9185 2520 l 9081 2579 l 8977 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2520 m 9081 2580 l 8977 2639 l 8873 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2580 m 8977 2640 l 8873 2699 l 8769 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2640 m 8873 2700 l 8769 2759 l 8665 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2700 m 8769 2760 l 8665 2819 l 8561 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2760 m 8665 2820 l 8561 2879 l 8457 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2820 m 8561 2880 l 8457 2939 l 8353 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 2880 m 8457 2940 l 8353 2999 l 8250 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 2940 m 8353 3000 l 8250 3059 l 8146 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2100 m 10015 2160 l 9911 2219 l 9807 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2160 m 9911 2220 l 9807 2279 l 9703 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2220 m 9807 2280 l 9703 2339 l 9600 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2280 m 9703 2340 l 9600 2399 l 9497 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2340 m 9600 2400 l 9497 2459 l 9393 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2400 m 9497 2460 l 9393 2519 l 9289 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2460 m 9393 2520 l 9289 2579 l 9185 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2520 m 9289 2580 l 9185 2639 l 9081 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2580 m 9185 2640 l 9081 2699 l 8977 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2640 m 9081 2700 l 8977 2759 l 8873 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2700 m 8977 2760 l 8873 2819 l 8769 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2760 m 8873 2820 l 8769 2879 l 8665 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2820 m 8769 2880 l 8665 2939 l 8561 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 2880 m 8665 2940 l 8561 2999 l 8457 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 2940 m 8561 3000 l 8457 3059 l 8353 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 3000 m 8457 3060 l 8353 3119 l 8250 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2160 m 10119 2220 l 10015 2279 l 9911 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2220 m 10015 2280 l 9911 2339 l 9807 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2280 m 9911 2340 l 9807 2399 l 9703 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2340 m 9807 2400 l 9703 2459 l 9600 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2400 m 9703 2460 l 9600 2519 l 9497 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2460 m 9600 2520 l 9497 2579 l 9393 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2520 m 9497 2580 l 9393 2639 l 9289 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2580 m 9393 2640 l 9289 2699 l 9185 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2640 m 9289 2700 l 9185 2759 l 9081 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2700 m 9185 2760 l 9081 2819 l 8977 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2760 m 9081 2820 l 8977 2879 l 8873 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2820 m 8977 2880 l 8873 2939 l 8769 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 2880 m 8873 2940 l 8769 2999 l 8665 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 2940 m 8769 3000 l 8665 3059 l 8561 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 3000 m 8665 3060 l 8561 3119 l 8457 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 3060 m 8561 3120 l 8457 3179 l 8353 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2220 m 10223 2280 l 10119 2339 l 10015 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2280 m 10119 2340 l 10015 2399 l 9911 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2340 m 10015 2400 l 9911 2459 l 9807 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2400 m 9911 2460 l 9807 2519 l 9703 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2460 m 9807 2520 l 9703 2579 l 9600 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2520 m 9703 2580 l 9600 2639 l 9497 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2580 m 9600 2640 l 9497 2699 l 9393 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2640 m 9497 2700 l 9393 2759 l 9289 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2700 m 9393 2760 l 9289 2819 l 9185 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2760 m 9289 2820 l 9185 2879 l 9081 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2820 m 9185 2880 l 9081 2939 l 8977 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 2880 m 9081 2940 l 8977 2999 l 8873 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 2940 m 8977 3000 l 8873 3059 l 8769 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 3000 m 8873 3060 l 8769 3119 l 8665 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 3060 m 8769 3120 l 8665 3179 l 8561 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 3120 m 8665 3180 l 8561 3239 l 8457 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2280 m 10327 2340 l 10223 2399 l 10119 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2340 m 10223 2400 l 10119 2459 l 10015 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2400 m 10119 2460 l 10015 2519 l 9911 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2460 m 10015 2520 l 9911 2579 l 9807 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2520 m 9911 2580 l 9807 2639 l 9703 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2580 m 9807 2640 l 9703 2699 l 9600 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2640 m 9703 2700 l 9600 2759 l 9497 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2700 m 9600 2760 l 9497 2819 l 9393 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2760 m 9497 2820 l 9393 2879 l 9289 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2820 m 9393 2880 l 9289 2939 l 9185 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 2880 m 9289 2940 l 9185 2999 l 9081 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 2940 m 9185 3000 l 9081 3059 l 8977 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 3000 m 9081 3060 l 8977 3119 l 8873 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 3060 m 8977 3120 l 8873 3179 l 8769 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 3120 m 8873 3180 l 8769 3239 l 8665 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 3180 m 8769 3240 l 8665 3299 l 8561 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2340 m 10431 2400 l 10327 2459 l 10223 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2400 m 10327 2460 l 10223 2519 l 10119 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2460 m 10223 2520 l 10119 2579 l 10015 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2520 m 10119 2580 l 10015 2639 l 9911 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2580 m 10015 2640 l 9911 2699 l 9807 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2640 m 9911 2700 l 9807 2759 l 9703 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2700 m 9807 2760 l 9703 2819 l 9600 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2760 m 9703 2820 l 9600 2879 l 9497 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2820 m 9600 2880 l 9497 2939 l 9393 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 2880 m 9497 2940 l 9393 2999 l 9289 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 2940 m 9393 3000 l 9289 3059 l 9185 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 3000 m 9289 3060 l 9185 3119 l 9081 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 3060 m 9185 3120 l 9081 3179 l 8977 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 3120 m 9081 3180 l 8977 3239 l 8873 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 3180 m 8977 3240 l 8873 3299 l 8769 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 3240 m 8873 3300 l 8769 3359 l 8665 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2400 m 10535 2460 l 10431 2519 l 10327 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2460 m 10431 2520 l 10327 2579 l 10223 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2520 m 10327 2580 l 10223 2639 l 10119 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2580 m 10223 2640 l 10119 2699 l 10015 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2640 m 10119 2700 l 10015 2759 l 9911 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2700 m 10015 2760 l 9911 2819 l 9807 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2760 m 9911 2820 l 9807 2879 l 9703 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2820 m 9807 2880 l 9703 2939 l 9600 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 2880 m 9703 2940 l 9600 2999 l 9497 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 2940 m 9600 3000 l 9497 3059 l 9393 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3000 m 9497 3060 l 9393 3119 l 9289 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 3060 m 9393 3120 l 9289 3179 l 9185 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 3120 m 9289 3180 l 9185 3239 l 9081 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 3180 m 9185 3240 l 9081 3299 l 8977 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 3240 m 9081 3300 l 8977 3359 l 8873 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 3300 m 8977 3360 l 8873 3419 l 8769 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2460 m 10639 2520 l 10535 2579 l 10431 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2520 m 10535 2580 l 10431 2639 l 10327 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2580 m 10431 2640 l 10327 2699 l 10223 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2640 m 10327 2700 l 10223 2759 l 10119 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2700 m 10223 2760 l 10119 2819 l 10015 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2760 m 10119 2820 l 10015 2879 l 9911 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2820 m 10015 2880 l 9911 2939 l 9807 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 2880 m 9911 2940 l 9807 2999 l 9703 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 2940 m 9807 3000 l 9703 3059 l 9600 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3000 m 9703 3060 l 9600 3119 l 9497 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3060 m 9600 3120 l 9497 3179 l 9393 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3120 m 9497 3180 l 9393 3239 l 9289 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 3180 m 9393 3240 l 9289 3299 l 9185 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 3240 m 9289 3300 l 9185 3359 l 9081 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 3300 m 9185 3360 l 9081 3419 l 8977 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 3360 m 9081 3420 l 8977 3479 l 8873 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2520 m 10743 2580 l 10639 2639 l 10535 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2580 m 10639 2640 l 10535 2699 l 10431 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2640 m 10535 2700 l 10431 2759 l 10327 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2700 m 10431 2760 l 10327 2819 l 10223 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2760 m 10327 2820 l 10223 2879 l 10119 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2820 m 10223 2880 l 10119 2939 l 10015 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 2880 m 10119 2940 l 10015 2999 l 9911 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 2940 m 10015 3000 l 9911 3059 l 9807 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3000 m 9911 3060 l 9807 3119 l 9703 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3060 m 9807 3120 l 9703 3179 l 9600 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3120 m 9703 3180 l 9600 3239 l 9497 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3180 m 9600 3240 l 9497 3299 l 9393 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3240 m 9497 3300 l 9393 3359 l 9289 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 3300 m 9393 3360 l 9289 3419 l 9185 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 3360 m 9289 3420 l 9185 3479 l 9081 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 3420 m 9185 3480 l 9081 3539 l 8977 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2580 m 10847 2640 l 10743 2699 l 10639 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2640 m 10743 2700 l 10639 2759 l 10535 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2700 m 10639 2760 l 10535 2819 l 10431 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2760 m 10535 2820 l 10431 2879 l 10327 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2820 m 10431 2880 l 10327 2939 l 10223 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 2880 m 10327 2940 l 10223 2999 l 10119 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 2940 m 10223 3000 l 10119 3059 l 10015 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 3000 m 10119 3060 l 10015 3119 l 9911 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 3060 m 10015 3120 l 9911 3179 l 9807 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3120 m 9911 3180 l 9807 3239 l 9703 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3180 m 9807 3240 l 9703 3299 l 9600 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3240 m 9703 3300 l 9600 3359 l 9497 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3300 m 9600 3360 l 9497 3419 l 9393 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3360 m 9497 3420 l 9393 3479 l 9289 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 3420 m 9393 3480 l 9289 3539 l 9185 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 3480 m 9289 3540 l 9185 3599 l 9081 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2640 m 10950 2700 l 10847 2759 l 10743 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2700 m 10847 2760 l 10743 2819 l 10639 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2760 m 10743 2820 l 10639 2879 l 10535 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2820 m 10639 2880 l 10535 2939 l 10431 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 2880 m 10535 2940 l 10431 2999 l 10327 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 2940 m 10431 3000 l 10327 3059 l 10223 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 3000 m 10327 3060 l 10223 3119 l 10119 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 3060 m 10223 3120 l 10119 3179 l 10015 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 3120 m 10119 3180 l 10015 3239 l 9911 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 3180 m 10015 3240 l 9911 3299 l 9807 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3240 m 9911 3300 l 9807 3359 l 9703 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3300 m 9807 3360 l 9703 3419 l 9600 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3360 m 9703 3420 l 9600 3479 l 9497 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3420 m 9600 3480 l 9497 3539 l 9393 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3480 m 9497 3540 l 9393 3599 l 9289 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 3540 m 9393 3600 l 9289 3659 l 9185 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2700 m 11054 2760 l 10950 2819 l 10847 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2760 m 10950 2820 l 10847 2879 l 10743 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2820 m 10847 2880 l 10743 2939 l 10639 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 2880 m 10743 2940 l 10639 2999 l 10535 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 2940 m 10639 3000 l 10535 3059 l 10431 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 3000 m 10535 3060 l 10431 3119 l 10327 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 3060 m 10431 3120 l 10327 3179 l 10223 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 3120 m 10327 3180 l 10223 3239 l 10119 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 3180 m 10223 3240 l 10119 3299 l 10015 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 3240 m 10119 3300 l 10015 3359 l 9911 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 3300 m 10015 3360 l 9911 3419 l 9807 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3360 m 9911 3420 l 9807 3479 l 9703 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3420 m 9807 3480 l 9703 3539 l 9600 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3480 m 9703 3540 l 9600 3599 l 9497 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3540 m 9600 3600 l 9497 3659 l 9393 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 3600 m 9497 3660 l 9393 3719 l 9289 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2760 m 11158 2820 l 11054 2879 l 10950 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2820 m 11054 2880 l 10950 2939 l 10847 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 2880 m 10950 2940 l 10847 2999 l 10743 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 2940 m 10847 3000 l 10743 3059 l 10639 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 3000 m 10743 3060 l 10639 3119 l 10535 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 3060 m 10639 3120 l 10535 3179 l 10431 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 3120 m 10535 3180 l 10431 3239 l 10327 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 3180 m 10431 3240 l 10327 3299 l 10223 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 3240 m 10327 3300 l 10223 3359 l 10119 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 3300 m 10223 3360 l 10119 3419 l 10015 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 3360 m 10119 3420 l 10015 3479 l 9911 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 3420 m 10015 3480 l 9911 3539 l 9807 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3480 m 9911 3540 l 9807 3599 l 9703 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3540 m 9807 3600 l 9703 3659 l 9600 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3600 m 9703 3660 l 9600 3719 l 9497 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 3660 m 9600 3720 l 9497 3779 l 9393 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 2820 m 11262 2880 l 11158 2939 l 11054 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 2880 m 11158 2940 l 11054 2999 l 10950 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 2940 m 11054 3000 l 10950 3059 l 10847 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 3000 m 10950 3060 l 10847 3119 l 10743 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 3060 m 10847 3120 l 10743 3179 l 10639 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 3120 m 10743 3180 l 10639 3239 l 10535 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 3180 m 10639 3240 l 10535 3299 l 10431 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 3240 m 10535 3300 l 10431 3359 l 10327 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 3300 m 10431 3360 l 10327 3419 l 10223 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 3360 m 10327 3420 l 10223 3479 l 10119 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 3420 m 10223 3480 l 10119 3539 l 10015 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 3480 m 10119 3540 l 10015 3599 l 9911 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 3540 m 10015 3600 l 9911 3659 l 9807 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 3600 m 9911 3660 l 9807 3719 l 9703 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 3660 m 9807 3720 l 9703 3779 l 9600 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3720 m 9703 3780 l 9600 3839 l 9497 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2100 m 13647 2159 l 13647 2039 l 13751 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13647 1920 m 13543 1979 l 13543 1860 l 13647 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13440 1680 m 13337 1740 l 13337 1620 l 13440 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1560 m 13337 1620 l 13337 1500 l 13440 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1440 m 13337 1500 l 13337 1380 l 13440 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1320 m 13337 1380 l 13337 1260 l 13440 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1200 m 13337 1260 l 13337 1140 l 13440 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1080 m 13337 1140 l 13337 1020 l 13440 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 960 m 13337 1020 l 13337 900 l 13440 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 840 m 13337 900 l 13337 780 l 13440 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 720 m 13337 780 l 13337 660 l 13440 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 600 m 13337 660 l 13337 540 l 13440 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 480 m 13337 540 l 13337 420 l 13440 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 360 m 13337 420 l 13337 300 l 13440 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 240 m 13337 300 l 13337 180 l 13440 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 120 m 13337 180 l 13337 60 l 13440 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2100 m 13440 2159 l 13440 2039 l 13543 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13543 1980 m 13440 2039 l 13440 1920 l 13543 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13337 1740 m 13233 1800 l 13233 1680 l 13337 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1620 m 13233 1680 l 13233 1560 l 13337 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1500 m 13233 1560 l 13233 1440 l 13337 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1380 m 13233 1440 l 13233 1320 l 13337 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1260 m 13233 1320 l 13233 1200 l 13337 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1140 m 13233 1200 l 13233 1080 l 13337 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 1020 m 13233 1080 l 13233 960 l 13337 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 900 m 13233 960 l 13233 840 l 13337 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 780 m 13233 840 l 13233 720 l 13337 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 660 m 13233 720 l 13233 600 l 13337 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 540 m 13233 600 l 13233 480 l 13337 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 420 m 13233 480 l 13233 360 l 13337 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 300 m 13233 360 l 13233 240 l 13337 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 180 m 13233 240 l 13233 120 l 13337 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2160 m 13337 2219 l 13337 2099 l 13440 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13233 1920 m 13129 1979 l 13129 1860 l 13233 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1800 m 13129 1860 l 13129 1740 l 13233 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1680 m 13129 1740 l 13129 1620 l 13233 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1560 m 13129 1620 l 13129 1500 l 13233 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1440 m 13129 1500 l 13129 1380 l 13233 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1320 m 13129 1380 l 13129 1260 l 13233 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1200 m 13129 1260 l 13129 1140 l 13233 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 1080 m 13129 1140 l 13129 1020 l 13233 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 960 m 13129 1020 l 13129 900 l 13233 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 840 m 13129 900 l 13129 780 l 13233 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 720 m 13129 780 l 13129 660 l 13233 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 600 m 13129 660 l 13129 540 l 13233 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 480 m 13129 540 l 13129 420 l 13233 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 360 m 13129 420 l 13129 300 l 13233 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 240 m 13129 300 l 13129 180 l 13233 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2220 m 13233 2279 l 13233 2159 l 13337 2100 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13129 1980 m 13025 2039 l 13025 1920 l 13129 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1860 m 13025 1920 l 13025 1800 l 13129 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1740 m 13025 1800 l 13025 1680 l 13129 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1620 m 13025 1680 l 13025 1560 l 13129 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1500 m 13025 1560 l 13025 1440 l 13129 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1380 m 13025 1440 l 13025 1320 l 13129 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1260 m 13025 1320 l 13025 1200 l 13129 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1140 m 13025 1200 l 13025 1080 l 13129 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 1020 m 13025 1080 l 13025 960 l 13129 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 900 m 13025 960 l 13025 840 l 13129 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 780 m 13025 840 l 13025 720 l 13129 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 660 m 13025 720 l 13025 600 l 13129 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 540 m 13025 600 l 13025 480 l 13129 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 420 m 13025 480 l 13025 360 l 13129 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 300 m 13025 360 l 13025 240 l 13129 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2220 m 13025 2279 l 13025 2159 l 13129 2100 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13025 2040 m 12921 2099 l 12921 1979 l 13025 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1920 m 12921 1979 l 12921 1860 l 13025 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1800 m 12921 1860 l 12921 1740 l 13025 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1680 m 12921 1740 l 12921 1620 l 13025 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1560 m 12921 1620 l 12921 1500 l 13025 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1440 m 12921 1500 l 12921 1380 l 13025 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1320 m 12921 1380 l 12921 1260 l 13025 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1200 m 12921 1260 l 12921 1140 l 13025 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 1080 m 12921 1140 l 12921 1020 l 13025 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 960 m 12921 1020 l 12921 900 l 13025 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 840 m 12921 900 l 12921 780 l 13025 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 720 m 12921 780 l 12921 660 l 13025 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 600 m 12921 660 l 12921 540 l 13025 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 480 m 12921 540 l 12921 420 l 13025 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 360 m 12921 420 l 12921 300 l 13025 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2280 m 12921 2339 l 12921 2219 l 13025 2160 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12921 2100 m 12817 2159 l 12817 2039 l 12921 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1980 m 12817 2039 l 12817 1920 l 12921 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1860 m 12817 1920 l 12817 1800 l 12921 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1740 m 12817 1800 l 12817 1680 l 12921 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1620 m 12817 1680 l 12817 1560 l 12921 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1500 m 12817 1560 l 12817 1440 l 12921 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1380 m 12817 1440 l 12817 1320 l 12921 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1260 m 12817 1320 l 12817 1200 l 12921 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1140 m 12817 1200 l 12817 1080 l 12921 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 1020 m 12817 1080 l 12817 960 l 12921 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 900 m 12817 960 l 12817 840 l 12921 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 780 m 12817 840 l 12817 720 l 12921 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 660 m 12817 720 l 12817 600 l 12921 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 540 m 12817 600 l 12817 480 l 12921 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 420 m 12817 480 l 12817 360 l 12921 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2280 m 12713 2339 l 12713 2219 l 12817 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2160 m 12713 2219 l 12713 2099 l 12817 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2040 m 12713 2099 l 12713 1979 l 12817 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1920 m 12713 1979 l 12713 1860 l 12817 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1800 m 12713 1860 l 12713 1740 l 12817 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1680 m 12713 1740 l 12713 1620 l 12817 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1560 m 12713 1620 l 12713 1500 l 12817 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1440 m 12713 1500 l 12713 1380 l 12817 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1320 m 12713 1380 l 12713 1260 l 12817 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1200 m 12713 1260 l 12713 1140 l 12817 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 1080 m 12713 1140 l 12713 1020 l 12817 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 960 m 12713 1020 l 12713 900 l 12817 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 840 m 12713 900 l 12713 780 l 12817 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 720 m 12713 780 l 12713 660 l 12817 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 600 m 12713 660 l 12713 540 l 12817 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 480 m 12713 540 l 12713 420 l 12817 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2340 m 12609 2399 l 12609 2279 l 12713 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2220 m 12609 2279 l 12609 2159 l 12713 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2100 m 12609 2159 l 12609 2039 l 12713 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1980 m 12609 2039 l 12609 1920 l 12713 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1860 m 12609 1920 l 12609 1800 l 12713 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1740 m 12609 1800 l 12609 1680 l 12713 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1620 m 12609 1680 l 12609 1560 l 12713 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1500 m 12609 1560 l 12609 1440 l 12713 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1380 m 12609 1440 l 12609 1320 l 12713 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1260 m 12609 1320 l 12609 1200 l 12713 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1140 m 12609 1200 l 12609 1080 l 12713 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 1020 m 12609 1080 l 12609 960 l 12713 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 900 m 12609 960 l 12609 840 l 12713 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 780 m 12609 840 l 12609 720 l 12713 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 660 m 12609 720 l 12609 600 l 12713 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 540 m 12609 600 l 12609 480 l 12713 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2400 m 12505 2459 l 12505 2339 l 12609 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2280 m 12505 2339 l 12505 2219 l 12609 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2160 m 12505 2219 l 12505 2099 l 12609 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2040 m 12505 2099 l 12505 1979 l 12609 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1920 m 12505 1979 l 12505 1860 l 12609 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1800 m 12505 1860 l 12505 1740 l 12609 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1680 m 12505 1740 l 12505 1620 l 12609 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1560 m 12505 1620 l 12505 1500 l 12609 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1440 m 12505 1500 l 12505 1380 l 12609 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1320 m 12505 1380 l 12505 1260 l 12609 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1200 m 12505 1260 l 12505 1140 l 12609 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 1080 m 12505 1140 l 12505 1020 l 12609 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 960 m 12505 1020 l 12505 900 l 12609 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 840 m 12505 900 l 12505 780 l 12609 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 720 m 12505 780 l 12505 660 l 12609 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 600 m 12505 660 l 12505 540 l 12609 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2460 m 12401 2519 l 12401 2399 l 12505 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2340 m 12401 2399 l 12401 2279 l 12505 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2220 m 12401 2279 l 12401 2159 l 12505 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2100 m 12401 2159 l 12401 2039 l 12505 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1980 m 12401 2039 l 12401 1920 l 12505 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1860 m 12401 1920 l 12401 1800 l 12505 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1740 m 12401 1800 l 12401 1680 l 12505 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1620 m 12401 1680 l 12401 1560 l 12505 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1500 m 12401 1560 l 12401 1440 l 12505 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1380 m 12401 1440 l 12401 1320 l 12505 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1260 m 12401 1320 l 12401 1200 l 12505 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1140 m 12401 1200 l 12401 1080 l 12505 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 1020 m 12401 1080 l 12401 960 l 12505 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 900 m 12401 960 l 12401 840 l 12505 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 780 m 12401 840 l 12401 720 l 12505 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 660 m 12401 720 l 12401 600 l 12505 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2520 m 12297 2579 l 12297 2459 l 12401 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2400 m 12297 2459 l 12297 2339 l 12401 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2280 m 12297 2339 l 12297 2219 l 12401 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2160 m 12297 2219 l 12297 2099 l 12401 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2040 m 12297 2099 l 12297 1979 l 12401 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1920 m 12297 1979 l 12297 1860 l 12401 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1800 m 12297 1860 l 12297 1740 l 12401 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1680 m 12297 1740 l 12297 1620 l 12401 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1560 m 12297 1620 l 12297 1500 l 12401 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1440 m 12297 1500 l 12297 1380 l 12401 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1320 m 12297 1380 l 12297 1260 l 12401 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1200 m 12297 1260 l 12297 1140 l 12401 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 1080 m 12297 1140 l 12297 1020 l 12401 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 960 m 12297 1020 l 12297 900 l 12401 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 840 m 12297 900 l 12297 780 l 12401 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 720 m 12297 780 l 12297 660 l 12401 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2580 m 12193 2639 l 12193 2519 l 12297 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2460 m 12193 2519 l 12193 2399 l 12297 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2340 m 12193 2399 l 12193 2279 l 12297 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2220 m 12193 2279 l 12193 2159 l 12297 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2100 m 12193 2159 l 12193 2039 l 12297 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1980 m 12193 2039 l 12193 1920 l 12297 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1860 m 12193 1920 l 12193 1800 l 12297 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1740 m 12193 1800 l 12193 1680 l 12297 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1620 m 12193 1680 l 12193 1560 l 12297 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1500 m 12193 1560 l 12193 1440 l 12297 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1380 m 12193 1440 l 12193 1320 l 12297 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1260 m 12193 1320 l 12193 1200 l 12297 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1140 m 12193 1200 l 12193 1080 l 12297 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 1020 m 12193 1080 l 12193 960 l 12297 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 900 m 12193 960 l 12193 840 l 12297 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 780 m 12193 840 l 12193 720 l 12297 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2640 m 12090 2699 l 12090 2579 l 12193 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2520 m 12090 2579 l 12090 2459 l 12193 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2400 m 12090 2459 l 12090 2339 l 12193 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2280 m 12090 2339 l 12090 2219 l 12193 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2160 m 12090 2219 l 12090 2099 l 12193 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2040 m 12090 2099 l 12090 1979 l 12193 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1920 m 12090 1979 l 12090 1860 l 12193 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1800 m 12090 1860 l 12090 1740 l 12193 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1680 m 12090 1740 l 12090 1620 l 12193 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1560 m 12090 1620 l 12090 1500 l 12193 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1440 m 12090 1500 l 12090 1380 l 12193 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1320 m 12090 1380 l 12090 1260 l 12193 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1200 m 12090 1260 l 12090 1140 l 12193 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 1080 m 12090 1140 l 12090 1020 l 12193 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 960 m 12090 1020 l 12090 900 l 12193 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 840 m 12090 900 l 12090 780 l 12193 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2700 m 11986 2759 l 11986 2639 l 12090 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2580 m 11986 2639 l 11986 2519 l 12090 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2460 m 11986 2519 l 11986 2399 l 12090 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2340 m 11986 2399 l 11986 2279 l 12090 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2220 m 11986 2279 l 11986 2159 l 12090 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2100 m 11986 2159 l 11986 2039 l 12090 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1980 m 11986 2039 l 11986 1920 l 12090 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1860 m 11986 1920 l 11986 1800 l 12090 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1740 m 11986 1800 l 11986 1680 l 12090 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1620 m 11986 1680 l 11986 1560 l 12090 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1500 m 11986 1560 l 11986 1440 l 12090 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1380 m 11986 1440 l 11986 1320 l 12090 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1260 m 11986 1320 l 11986 1200 l 12090 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1140 m 11986 1200 l 11986 1080 l 12090 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 1020 m 11986 1080 l 11986 960 l 12090 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 900 m 11986 960 l 11986 840 l 12090 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2760 m 11882 2819 l 11882 2699 l 11986 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2640 m 11882 2699 l 11882 2579 l 11986 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2520 m 11882 2579 l 11882 2459 l 11986 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2400 m 11882 2459 l 11882 2339 l 11986 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2280 m 11882 2339 l 11882 2219 l 11986 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2160 m 11882 2219 l 11882 2099 l 11986 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2040 m 11882 2099 l 11882 1979 l 11986 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1920 m 11882 1979 l 11882 1860 l 11986 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1800 m 11882 1860 l 11882 1740 l 11986 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1680 m 11882 1740 l 11882 1620 l 11986 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1560 m 11882 1620 l 11882 1500 l 11986 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1440 m 11882 1500 l 11882 1380 l 11986 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1320 m 11882 1380 l 11882 1260 l 11986 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1200 m 11882 1260 l 11882 1140 l 11986 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 1080 m 11882 1140 l 11882 1020 l 11986 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 960 m 11882 1020 l 11882 900 l 11986 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2820 m 11778 2879 l 11778 2759 l 11882 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2700 m 11778 2759 l 11778 2639 l 11882 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2580 m 11778 2639 l 11778 2519 l 11882 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2460 m 11778 2519 l 11778 2399 l 11882 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2340 m 11778 2399 l 11778 2279 l 11882 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2220 m 11778 2279 l 11778 2159 l 11882 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2100 m 11778 2159 l 11778 2039 l 11882 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1980 m 11778 2039 l 11778 1920 l 11882 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1860 m 11778 1920 l 11778 1800 l 11882 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1740 m 11778 1800 l 11778 1680 l 11882 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1620 m 11778 1680 l 11778 1560 l 11882 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1500 m 11778 1560 l 11778 1440 l 11882 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1380 m 11778 1440 l 11778 1320 l 11882 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1260 m 11778 1320 l 11778 1200 l 11882 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1140 m 11778 1200 l 11778 1080 l 11882 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 1020 m 11778 1080 l 11778 960 l 11882 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2280 m 12817 2160 l 12921 2220 l 12921 2340 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13233 1920 m 13233 1800 l 13337 1861 l 13337 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13440 1680 m 13440 1560 l 13543 1621 l 13543 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1560 m 13440 1440 l 13543 1501 l 13543 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1440 m 13440 1320 l 13543 1381 l 13543 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1320 m 13440 1200 l 13543 1261 l 13543 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1200 m 13440 1080 l 13543 1141 l 13543 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1080 m 13440 960 l 13543 1021 l 13543 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 960 m 13440 840 l 13543 901 l 13543 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 840 m 13440 720 l 13543 781 l 13543 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 720 m 13440 600 l 13543 661 l 13543 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 600 m 13440 480 l 13543 541 l 13543 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 480 m 13440 360 l 13543 421 l 13543 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 360 m 13440 240 l 13543 301 l 13543 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 240 m 13440 120 l 13543 181 l 13543 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 120 m 13440 0 l 13543 61 l 13543 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2220 m 13129 2100 l 13233 2160 l 13233 2280 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13337 1980 m 13337 1860 l 13440 1920 l 13440 2040 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13543 1740 m 13543 1620 l 13647 1681 l 13647 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1620 m 13543 1500 l 13647 1561 l 13647 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1500 m 13543 1380 l 13647 1441 l 13647 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1380 m 13543 1260 l 13647 1321 l 13647 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1260 m 13543 1140 l 13647 1201 l 13647 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1140 m 13543 1020 l 13647 1081 l 13647 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1020 m 13543 900 l 13647 961 l 13647 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 900 m 13543 780 l 13647 841 l 13647 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 780 m 13543 660 l 13647 721 l 13647 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 660 m 13543 540 l 13647 601 l 13647 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 540 m 13543 420 l 13647 481 l 13647 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 420 m 13543 300 l 13647 361 l 13647 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 300 m 13543 180 l 13647 241 l 13647 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 180 m 13543 60 l 13647 121 l 13647 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2100 m 13543 1980 l 13647 2040 l 13647 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13647 1920 m 13647 1800 l 13751 1861 l 13751 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1800 m 13647 1680 l 13751 1741 l 13751 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1680 m 13647 1560 l 13751 1621 l 13751 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1560 m 13647 1440 l 13751 1501 l 13751 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1440 m 13647 1320 l 13751 1381 l 13751 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1320 m 13647 1200 l 13751 1261 l 13751 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1200 m 13647 1080 l 13751 1141 l 13751 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1080 m 13647 960 l 13751 1021 l 13751 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 960 m 13647 840 l 13751 901 l 13751 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 840 m 13647 720 l 13751 781 l 13751 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 720 m 13647 600 l 13751 661 l 13751 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 600 m 13647 480 l 13751 541 l 13751 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 480 m 13647 360 l 13751 421 l 13751 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 360 m 13647 240 l 13751 301 l 13751 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 240 m 13647 120 l 13751 181 l 13751 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2100 m 13751 1980 l 13855 2040 l 13855 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1980 m 13751 1860 l 13855 1920 l 13855 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1860 m 13751 1740 l 13855 1801 l 13855 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1740 m 13751 1620 l 13855 1681 l 13855 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1620 m 13751 1500 l 13855 1561 l 13855 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1500 m 13751 1380 l 13855 1441 l 13855 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1380 m 13751 1260 l 13855 1321 l 13855 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1260 m 13751 1140 l 13855 1201 l 13855 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1140 m 13751 1020 l 13855 1081 l 13855 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 1020 m 13751 900 l 13855 961 l 13855 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 900 m 13751 780 l 13855 841 l 13855 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 780 m 13751 660 l 13855 721 l 13855 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 660 m 13751 540 l 13855 601 l 13855 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 540 m 13751 420 l 13855 481 l 13855 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 420 m 13751 300 l 13855 361 l 13855 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 300 m 13751 180 l 13855 241 l 13855 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2160 m 13855 2040 l 13959 2100 l 13959 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2040 m 13855 1920 l 13959 1980 l 13959 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1920 m 13855 1800 l 13959 1861 l 13959 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1800 m 13855 1680 l 13959 1741 l 13959 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1680 m 13855 1560 l 13959 1621 l 13959 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1560 m 13855 1440 l 13959 1501 l 13959 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1440 m 13855 1320 l 13959 1381 l 13959 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1320 m 13855 1200 l 13959 1261 l 13959 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1200 m 13855 1080 l 13959 1141 l 13959 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 1080 m 13855 960 l 13959 1021 l 13959 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 960 m 13855 840 l 13959 901 l 13959 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 840 m 13855 720 l 13959 781 l 13959 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 720 m 13855 600 l 13959 661 l 13959 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 600 m 13855 480 l 13959 541 l 13959 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 480 m 13855 360 l 13959 421 l 13959 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 360 m 13855 240 l 13959 301 l 13959 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2220 m 13959 2100 l 14063 2160 l 14063 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2100 m 13959 1980 l 14063 2040 l 14063 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1980 m 13959 1860 l 14063 1920 l 14063 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1860 m 13959 1740 l 14063 1801 l 14063 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1740 m 13959 1620 l 14063 1681 l 14063 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1620 m 13959 1500 l 14063 1561 l 14063 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1500 m 13959 1380 l 14063 1441 l 14063 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1380 m 13959 1260 l 14063 1321 l 14063 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1260 m 13959 1140 l 14063 1201 l 14063 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1140 m 13959 1020 l 14063 1081 l 14063 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 1020 m 13959 900 l 14063 961 l 14063 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 900 m 13959 780 l 14063 841 l 14063 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 780 m 13959 660 l 14063 721 l 14063 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 660 m 13959 540 l 14063 601 l 14063 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 540 m 13959 420 l 14063 481 l 14063 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 420 m 13959 300 l 14063 361 l 14063 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2280 m 14063 2160 l 14167 2220 l 14167 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2160 m 14063 2040 l 14167 2100 l 14167 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2040 m 14063 1920 l 14167 1980 l 14167 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1920 m 14063 1800 l 14167 1861 l 14167 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1800 m 14063 1680 l 14167 1741 l 14167 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1680 m 14063 1560 l 14167 1621 l 14167 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1560 m 14063 1440 l 14167 1501 l 14167 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1440 m 14063 1320 l 14167 1381 l 14167 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1320 m 14063 1200 l 14167 1261 l 14167 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1200 m 14063 1080 l 14167 1141 l 14167 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 1080 m 14063 960 l 14167 1021 l 14167 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 960 m 14063 840 l 14167 901 l 14167 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 840 m 14063 720 l 14167 781 l 14167 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 720 m 14063 600 l 14167 661 l 14167 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 600 m 14063 480 l 14167 541 l 14167 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 480 m 14063 360 l 14167 421 l 14167 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2340 m 14167 2220 l 14271 2280 l 14271 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2220 m 14167 2100 l 14271 2160 l 14271 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2100 m 14167 1980 l 14271 2040 l 14271 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1980 m 14167 1860 l 14271 1920 l 14271 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1860 m 14167 1740 l 14271 1801 l 14271 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1740 m 14167 1620 l 14271 1681 l 14271 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1620 m 14167 1500 l 14271 1561 l 14271 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1500 m 14167 1380 l 14271 1441 l 14271 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1380 m 14167 1260 l 14271 1321 l 14271 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1260 m 14167 1140 l 14271 1201 l 14271 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1140 m 14167 1020 l 14271 1081 l 14271 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 1020 m 14167 900 l 14271 961 l 14271 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 900 m 14167 780 l 14271 841 l 14271 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 780 m 14167 660 l 14271 721 l 14271 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 660 m 14167 540 l 14271 601 l 14271 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 540 m 14167 420 l 14271 481 l 14271 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2400 m 14271 2280 l 14375 2340 l 14375 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2280 m 14271 2160 l 14375 2220 l 14375 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2160 m 14271 2040 l 14375 2100 l 14375 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2040 m 14271 1920 l 14375 1980 l 14375 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1920 m 14271 1800 l 14375 1861 l 14375 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1800 m 14271 1680 l 14375 1741 l 14375 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1680 m 14271 1560 l 14375 1621 l 14375 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1560 m 14271 1440 l 14375 1501 l 14375 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1440 m 14271 1320 l 14375 1381 l 14375 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1320 m 14271 1200 l 14375 1261 l 14375 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1200 m 14271 1080 l 14375 1141 l 14375 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 1080 m 14271 960 l 14375 1021 l 14375 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 960 m 14271 840 l 14375 901 l 14375 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 840 m 14271 720 l 14375 781 l 14375 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 720 m 14271 600 l 14375 661 l 14375 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 600 m 14271 480 l 14375 541 l 14375 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2460 m 14375 2340 l 14479 2400 l 14479 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2340 m 14375 2220 l 14479 2280 l 14479 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2220 m 14375 2100 l 14479 2160 l 14479 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2100 m 14375 1980 l 14479 2040 l 14479 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1980 m 14375 1860 l 14479 1920 l 14479 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1860 m 14375 1740 l 14479 1801 l 14479 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1740 m 14375 1620 l 14479 1681 l 14479 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1620 m 14375 1500 l 14479 1561 l 14479 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1500 m 14375 1380 l 14479 1441 l 14479 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1380 m 14375 1260 l 14479 1321 l 14479 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1260 m 14375 1140 l 14479 1201 l 14479 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1140 m 14375 1020 l 14479 1081 l 14479 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 1020 m 14375 900 l 14479 961 l 14479 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 900 m 14375 780 l 14479 841 l 14479 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 780 m 14375 660 l 14479 721 l 14479 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 660 m 14375 540 l 14479 601 l 14479 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2520 m 14479 2400 l 14583 2460 l 14583 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2400 m 14479 2280 l 14583 2340 l 14583 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2280 m 14479 2160 l 14583 2220 l 14583 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2160 m 14479 2040 l 14583 2100 l 14583 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2040 m 14479 1920 l 14583 1980 l 14583 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1920 m 14479 1800 l 14583 1861 l 14583 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1800 m 14479 1680 l 14583 1741 l 14583 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1680 m 14479 1560 l 14583 1621 l 14583 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1560 m 14479 1440 l 14583 1501 l 14583 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1440 m 14479 1320 l 14583 1381 l 14583 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1320 m 14479 1200 l 14583 1261 l 14583 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1200 m 14479 1080 l 14583 1141 l 14583 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 1080 m 14479 960 l 14583 1021 l 14583 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 960 m 14479 840 l 14583 901 l 14583 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 840 m 14479 720 l 14583 781 l 14583 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 720 m 14479 600 l 14583 661 l 14583 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2580 m 14583 2460 l 14687 2520 l 14687 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2460 m 14583 2340 l 14687 2400 l 14687 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2340 m 14583 2220 l 14687 2280 l 14687 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2220 m 14583 2100 l 14687 2160 l 14687 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2100 m 14583 1980 l 14687 2040 l 14687 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1980 m 14583 1860 l 14687 1920 l 14687 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1860 m 14583 1740 l 14687 1801 l 14687 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1740 m 14583 1620 l 14687 1681 l 14687 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1620 m 14583 1500 l 14687 1561 l 14687 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1500 m 14583 1380 l 14687 1441 l 14687 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1380 m 14583 1260 l 14687 1321 l 14687 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1260 m 14583 1140 l 14687 1201 l 14687 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1140 m 14583 1020 l 14687 1081 l 14687 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 1020 m 14583 900 l 14687 961 l 14687 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 900 m 14583 780 l 14687 841 l 14687 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 780 m 14583 660 l 14687 721 l 14687 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2640 m 14687 2520 l 14790 2580 l 14790 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2520 m 14687 2400 l 14790 2460 l 14790 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2400 m 14687 2280 l 14790 2340 l 14790 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2280 m 14687 2160 l 14790 2220 l 14790 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2160 m 14687 2040 l 14790 2100 l 14790 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2040 m 14687 1920 l 14790 1980 l 14790 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1920 m 14687 1800 l 14790 1861 l 14790 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1800 m 14687 1680 l 14790 1741 l 14790 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1680 m 14687 1560 l 14790 1621 l 14790 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1560 m 14687 1440 l 14790 1501 l 14790 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1440 m 14687 1320 l 14790 1381 l 14790 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1320 m 14687 1200 l 14790 1261 l 14790 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1200 m 14687 1080 l 14790 1141 l 14790 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 1080 m 14687 960 l 14790 1021 l 14790 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 960 m 14687 840 l 14790 901 l 14790 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 840 m 14687 720 l 14790 781 l 14790 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2700 m 14790 2580 l 14894 2640 l 14894 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2580 m 14790 2460 l 14894 2520 l 14894 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2460 m 14790 2340 l 14894 2400 l 14894 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2340 m 14790 2220 l 14894 2280 l 14894 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2220 m 14790 2100 l 14894 2160 l 14894 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2100 m 14790 1980 l 14894 2040 l 14894 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1980 m 14790 1860 l 14894 1920 l 14894 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1860 m 14790 1740 l 14894 1801 l 14894 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1740 m 14790 1620 l 14894 1681 l 14894 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1620 m 14790 1500 l 14894 1561 l 14894 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1500 m 14790 1380 l 14894 1441 l 14894 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1380 m 14790 1260 l 14894 1321 l 14894 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1260 m 14790 1140 l 14894 1201 l 14894 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1140 m 14790 1020 l 14894 1081 l 14894 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 1020 m 14790 900 l 14894 961 l 14894 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 900 m 14790 780 l 14894 841 l 14894 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2760 m 14894 2640 l 14998 2700 l 14998 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2640 m 14894 2520 l 14998 2580 l 14998 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2520 m 14894 2400 l 14998 2460 l 14998 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2400 m 14894 2280 l 14998 2340 l 14998 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2280 m 14894 2160 l 14998 2220 l 14998 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2160 m 14894 2040 l 14998 2100 l 14998 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2040 m 14894 1920 l 14998 1980 l 14998 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1920 m 14894 1800 l 14998 1861 l 14998 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1800 m 14894 1680 l 14998 1741 l 14998 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1680 m 14894 1560 l 14998 1621 l 14998 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1560 m 14894 1440 l 14998 1501 l 14998 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1440 m 14894 1320 l 14998 1381 l 14998 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1320 m 14894 1200 l 14998 1261 l 14998 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1200 m 14894 1080 l 14998 1141 l 14998 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 1080 m 14894 960 l 14998 1021 l 14998 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 960 m 14894 840 l 14998 901 l 14998 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2820 m 14998 2700 l 15102 2760 l 15102 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2700 m 14998 2580 l 15102 2640 l 15102 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2580 m 14998 2460 l 15102 2520 l 15102 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2460 m 14998 2340 l 15102 2400 l 15102 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2340 m 14998 2220 l 15102 2280 l 15102 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2220 m 14998 2100 l 15102 2160 l 15102 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2100 m 14998 1980 l 15102 2040 l 15102 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1980 m 14998 1860 l 15102 1920 l 15102 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1860 m 14998 1740 l 15102 1801 l 15102 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1740 m 14998 1620 l 15102 1681 l 15102 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1620 m 14998 1500 l 15102 1561 l 15102 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1500 m 14998 1380 l 15102 1441 l 15102 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1380 m 14998 1260 l 15102 1321 l 15102 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1260 m 14998 1140 l 15102 1201 l 15102 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1140 m 14998 1020 l 15102 1081 l 15102 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 1020 m 14998 900 l 15102 961 l 15102 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 1680 m 13543 1741 l 13440 1800 l 13337 1740 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13337 1740 m 13440 1801 l 13337 1860 l 13233 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13233 1920 m 13337 1980 l 13233 2039 l 13129 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13129 1980 m 13233 2040 l 13129 2099 l 13025 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13025 2040 m 13129 2100 l 13025 2159 l 12921 2099 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12921 2100 m 13025 2160 l 12921 2219 l 12817 2159 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12817 2280 m 12921 2340 l 12817 2399 l 12713 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2340 m 12817 2400 l 12713 2459 l 12609 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2400 m 12713 2460 l 12609 2519 l 12505 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2460 m 12609 2520 l 12505 2579 l 12401 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2520 m 12505 2580 l 12401 2639 l 12297 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2580 m 12401 2640 l 12297 2699 l 12193 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2640 m 12297 2700 l 12193 2759 l 12090 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2700 m 12193 2760 l 12090 2819 l 11986 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2760 m 12090 2820 l 11986 2879 l 11882 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 2820 m 11986 2880 l 11882 2939 l 11778 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 1740 m 13647 1801 l 13543 1860 l 13440 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13440 1800 m 13543 1861 l 13440 1920 l 13337 1860 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13337 1980 m 13440 2040 l 13337 2099 l 13233 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13233 2040 m 13337 2100 l 13233 2159 l 13129 2099 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13129 2220 m 13233 2280 l 13129 2339 l 13025 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2280 m 13129 2340 l 13025 2399 l 12921 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2340 m 13025 2400 l 12921 2459 l 12817 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2400 m 12921 2460 l 12817 2519 l 12713 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2460 m 12817 2520 l 12713 2579 l 12609 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2520 m 12713 2580 l 12609 2639 l 12505 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2580 m 12609 2640 l 12505 2699 l 12401 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2640 m 12505 2700 l 12401 2759 l 12297 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2700 m 12401 2760 l 12297 2819 l 12193 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2760 m 12297 2820 l 12193 2879 l 12090 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2820 m 12193 2880 l 12090 2939 l 11986 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 2880 m 12090 2940 l 11986 2999 l 11882 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 1920 m 13751 1980 l 13647 2039 l 13543 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13543 2100 m 13647 2160 l 13543 2219 l 13440 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2160 m 13543 2220 l 13440 2279 l 13337 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2220 m 13440 2280 l 13337 2339 l 13233 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2280 m 13337 2340 l 13233 2399 l 13129 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2340 m 13233 2400 l 13129 2459 l 13025 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2400 m 13129 2460 l 13025 2519 l 12921 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2460 m 13025 2520 l 12921 2579 l 12817 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2520 m 12921 2580 l 12817 2639 l 12713 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2580 m 12817 2640 l 12713 2699 l 12609 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2640 m 12713 2700 l 12609 2759 l 12505 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2700 m 12609 2760 l 12505 2819 l 12401 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2760 m 12505 2820 l 12401 2879 l 12297 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2820 m 12401 2880 l 12297 2939 l 12193 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 2880 m 12297 2940 l 12193 2999 l 12090 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 2940 m 12193 3000 l 12090 3059 l 11986 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2100 m 13855 2160 l 13751 2219 l 13647 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2160 m 13751 2220 l 13647 2279 l 13543 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2220 m 13647 2280 l 13543 2339 l 13440 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2280 m 13543 2340 l 13440 2399 l 13337 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2340 m 13440 2400 l 13337 2459 l 13233 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2400 m 13337 2460 l 13233 2519 l 13129 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2460 m 13233 2520 l 13129 2579 l 13025 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2520 m 13129 2580 l 13025 2639 l 12921 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2580 m 13025 2640 l 12921 2699 l 12817 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2640 m 12921 2700 l 12817 2759 l 12713 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2700 m 12817 2760 l 12713 2819 l 12609 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2760 m 12713 2820 l 12609 2879 l 12505 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2820 m 12609 2880 l 12505 2939 l 12401 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 2880 m 12505 2940 l 12401 2999 l 12297 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 2940 m 12401 3000 l 12297 3059 l 12193 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 3000 m 12297 3060 l 12193 3119 l 12090 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2160 m 13959 2220 l 13855 2279 l 13751 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2220 m 13855 2280 l 13751 2339 l 13647 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2280 m 13751 2340 l 13647 2399 l 13543 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2340 m 13647 2400 l 13543 2459 l 13440 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2400 m 13543 2460 l 13440 2519 l 13337 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2460 m 13440 2520 l 13337 2579 l 13233 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2520 m 13337 2580 l 13233 2639 l 13129 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2580 m 13233 2640 l 13129 2699 l 13025 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2640 m 13129 2700 l 13025 2759 l 12921 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2700 m 13025 2760 l 12921 2819 l 12817 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2760 m 12921 2820 l 12817 2879 l 12713 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2820 m 12817 2880 l 12713 2939 l 12609 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 2880 m 12713 2940 l 12609 2999 l 12505 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 2940 m 12609 3000 l 12505 3059 l 12401 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 3000 m 12505 3060 l 12401 3119 l 12297 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 3060 m 12401 3120 l 12297 3179 l 12193 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2220 m 14063 2280 l 13959 2339 l 13855 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2280 m 13959 2340 l 13855 2399 l 13751 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2340 m 13855 2400 l 13751 2459 l 13647 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2400 m 13751 2460 l 13647 2519 l 13543 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2460 m 13647 2520 l 13543 2579 l 13440 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2520 m 13543 2580 l 13440 2639 l 13337 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2580 m 13440 2640 l 13337 2699 l 13233 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2640 m 13337 2700 l 13233 2759 l 13129 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2700 m 13233 2760 l 13129 2819 l 13025 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2760 m 13129 2820 l 13025 2879 l 12921 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2820 m 13025 2880 l 12921 2939 l 12817 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 2880 m 12921 2940 l 12817 2999 l 12713 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 2940 m 12817 3000 l 12713 3059 l 12609 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 3000 m 12713 3060 l 12609 3119 l 12505 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 3060 m 12609 3120 l 12505 3179 l 12401 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 3120 m 12505 3180 l 12401 3239 l 12297 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2280 m 14167 2340 l 14063 2399 l 13959 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2340 m 14063 2400 l 13959 2459 l 13855 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2400 m 13959 2460 l 13855 2519 l 13751 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2460 m 13855 2520 l 13751 2579 l 13647 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2520 m 13751 2580 l 13647 2639 l 13543 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2580 m 13647 2640 l 13543 2699 l 13440 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2640 m 13543 2700 l 13440 2759 l 13337 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2700 m 13440 2760 l 13337 2819 l 13233 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2760 m 13337 2820 l 13233 2879 l 13129 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2820 m 13233 2880 l 13129 2939 l 13025 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 2880 m 13129 2940 l 13025 2999 l 12921 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 2940 m 13025 3000 l 12921 3059 l 12817 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 3000 m 12921 3060 l 12817 3119 l 12713 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 3060 m 12817 3120 l 12713 3179 l 12609 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 3120 m 12713 3180 l 12609 3239 l 12505 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 3180 m 12609 3240 l 12505 3299 l 12401 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2340 m 14271 2400 l 14167 2459 l 14063 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2400 m 14167 2460 l 14063 2519 l 13959 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2460 m 14063 2520 l 13959 2579 l 13855 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2520 m 13959 2580 l 13855 2639 l 13751 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2580 m 13855 2640 l 13751 2699 l 13647 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2640 m 13751 2700 l 13647 2759 l 13543 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2700 m 13647 2760 l 13543 2819 l 13440 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2760 m 13543 2820 l 13440 2879 l 13337 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2820 m 13440 2880 l 13337 2939 l 13233 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 2880 m 13337 2940 l 13233 2999 l 13129 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 2940 m 13233 3000 l 13129 3059 l 13025 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 3000 m 13129 3060 l 13025 3119 l 12921 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 3060 m 13025 3120 l 12921 3179 l 12817 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 3120 m 12921 3180 l 12817 3239 l 12713 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 3180 m 12817 3240 l 12713 3299 l 12609 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 3240 m 12713 3300 l 12609 3359 l 12505 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2400 m 14375 2460 l 14271 2519 l 14167 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2460 m 14271 2520 l 14167 2579 l 14063 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2520 m 14167 2580 l 14063 2639 l 13959 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2580 m 14063 2640 l 13959 2699 l 13855 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2640 m 13959 2700 l 13855 2759 l 13751 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2700 m 13855 2760 l 13751 2819 l 13647 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2760 m 13751 2820 l 13647 2879 l 13543 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2820 m 13647 2880 l 13543 2939 l 13440 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 2880 m 13543 2940 l 13440 2999 l 13337 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 2940 m 13440 3000 l 13337 3059 l 13233 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3000 m 13337 3060 l 13233 3119 l 13129 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 3060 m 13233 3120 l 13129 3179 l 13025 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 3120 m 13129 3180 l 13025 3239 l 12921 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 3180 m 13025 3240 l 12921 3299 l 12817 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 3240 m 12921 3300 l 12817 3359 l 12713 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 3300 m 12817 3360 l 12713 3419 l 12609 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2460 m 14479 2520 l 14375 2579 l 14271 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2520 m 14375 2580 l 14271 2639 l 14167 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2580 m 14271 2640 l 14167 2699 l 14063 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2640 m 14167 2700 l 14063 2759 l 13959 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2700 m 14063 2760 l 13959 2819 l 13855 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2760 m 13959 2820 l 13855 2879 l 13751 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2820 m 13855 2880 l 13751 2939 l 13647 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 2880 m 13751 2940 l 13647 2999 l 13543 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 2940 m 13647 3000 l 13543 3059 l 13440 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3000 m 13543 3060 l 13440 3119 l 13337 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3060 m 13440 3120 l 13337 3179 l 13233 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3120 m 13337 3180 l 13233 3239 l 13129 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 3180 m 13233 3240 l 13129 3299 l 13025 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 3240 m 13129 3300 l 13025 3359 l 12921 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 3300 m 13025 3360 l 12921 3419 l 12817 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 3360 m 12921 3420 l 12817 3479 l 12713 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2520 m 14583 2580 l 14479 2639 l 14375 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2580 m 14479 2640 l 14375 2699 l 14271 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2640 m 14375 2700 l 14271 2759 l 14167 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2700 m 14271 2760 l 14167 2819 l 14063 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2760 m 14167 2820 l 14063 2879 l 13959 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2820 m 14063 2880 l 13959 2939 l 13855 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 2880 m 13959 2940 l 13855 2999 l 13751 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 2940 m 13855 3000 l 13751 3059 l 13647 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3000 m 13751 3060 l 13647 3119 l 13543 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3060 m 13647 3120 l 13543 3179 l 13440 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3120 m 13543 3180 l 13440 3239 l 13337 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3180 m 13440 3240 l 13337 3299 l 13233 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3240 m 13337 3300 l 13233 3359 l 13129 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 3300 m 13233 3360 l 13129 3419 l 13025 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 3360 m 13129 3420 l 13025 3479 l 12921 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 3420 m 13025 3480 l 12921 3539 l 12817 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2580 m 14687 2640 l 14583 2699 l 14479 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2640 m 14583 2700 l 14479 2759 l 14375 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2700 m 14479 2760 l 14375 2819 l 14271 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2760 m 14375 2820 l 14271 2879 l 14167 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2820 m 14271 2880 l 14167 2939 l 14063 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 2880 m 14167 2940 l 14063 2999 l 13959 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 2940 m 14063 3000 l 13959 3059 l 13855 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 3000 m 13959 3060 l 13855 3119 l 13751 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 3060 m 13855 3120 l 13751 3179 l 13647 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3120 m 13751 3180 l 13647 3239 l 13543 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3180 m 13647 3240 l 13543 3299 l 13440 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3240 m 13543 3300 l 13440 3359 l 13337 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3300 m 13440 3360 l 13337 3419 l 13233 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3360 m 13337 3420 l 13233 3479 l 13129 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 3420 m 13233 3480 l 13129 3539 l 13025 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 3480 m 13129 3540 l 13025 3599 l 12921 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2640 m 14790 2700 l 14687 2759 l 14583 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2700 m 14687 2760 l 14583 2819 l 14479 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2760 m 14583 2820 l 14479 2879 l 14375 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2820 m 14479 2880 l 14375 2939 l 14271 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 2880 m 14375 2940 l 14271 2999 l 14167 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 2940 m 14271 3000 l 14167 3059 l 14063 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 3000 m 14167 3060 l 14063 3119 l 13959 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 3060 m 14063 3120 l 13959 3179 l 13855 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 3120 m 13959 3180 l 13855 3239 l 13751 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 3180 m 13855 3240 l 13751 3299 l 13647 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3240 m 13751 3300 l 13647 3359 l 13543 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3300 m 13647 3360 l 13543 3419 l 13440 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3360 m 13543 3420 l 13440 3479 l 13337 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3420 m 13440 3480 l 13337 3539 l 13233 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3480 m 13337 3540 l 13233 3599 l 13129 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 3540 m 13233 3600 l 13129 3659 l 13025 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2700 m 14894 2760 l 14790 2819 l 14687 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2760 m 14790 2820 l 14687 2879 l 14583 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2820 m 14687 2880 l 14583 2939 l 14479 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 2880 m 14583 2940 l 14479 2999 l 14375 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 2940 m 14479 3000 l 14375 3059 l 14271 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 3000 m 14375 3060 l 14271 3119 l 14167 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 3060 m 14271 3120 l 14167 3179 l 14063 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 3120 m 14167 3180 l 14063 3239 l 13959 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 3180 m 14063 3240 l 13959 3299 l 13855 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 3240 m 13959 3300 l 13855 3359 l 13751 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 3300 m 13855 3360 l 13751 3419 l 13647 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3360 m 13751 3420 l 13647 3479 l 13543 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3420 m 13647 3480 l 13543 3539 l 13440 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3480 m 13543 3540 l 13440 3599 l 13337 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3540 m 13440 3600 l 13337 3659 l 13233 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 3600 m 13337 3660 l 13233 3719 l 13129 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2760 m 14998 2820 l 14894 2879 l 14790 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2820 m 14894 2880 l 14790 2939 l 14687 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 2880 m 14790 2940 l 14687 2999 l 14583 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 2940 m 14687 3000 l 14583 3059 l 14479 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 3000 m 14583 3060 l 14479 3119 l 14375 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 3060 m 14479 3120 l 14375 3179 l 14271 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 3120 m 14375 3180 l 14271 3239 l 14167 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 3180 m 14271 3240 l 14167 3299 l 14063 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 3240 m 14167 3300 l 14063 3359 l 13959 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 3300 m 14063 3360 l 13959 3419 l 13855 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 3360 m 13959 3420 l 13855 3479 l 13751 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 3420 m 13855 3480 l 13751 3539 l 13647 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3480 m 13751 3540 l 13647 3599 l 13543 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3540 m 13647 3600 l 13543 3659 l 13440 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3600 m 13543 3660 l 13440 3719 l 13337 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 3660 m 13440 3720 l 13337 3779 l 13233 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 2820 m 15102 2880 l 14998 2939 l 14894 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 2880 m 14998 2940 l 14894 2999 l 14790 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 2940 m 14894 3000 l 14790 3059 l 14687 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 3000 m 14790 3060 l 14687 3119 l 14583 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 3060 m 14687 3120 l 14583 3179 l 14479 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 3120 m 14583 3180 l 14479 3239 l 14375 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 3180 m 14479 3240 l 14375 3299 l 14271 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 3240 m 14375 3300 l 14271 3359 l 14167 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 3300 m 14271 3360 l 14167 3419 l 14063 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 3360 m 14167 3420 l 14063 3479 l 13959 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 3420 m 14063 3480 l 13959 3539 l 13855 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 3480 m 13959 3540 l 13855 3599 l 13751 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 3540 m 13855 3600 l 13751 3659 l 13647 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 3600 m 13751 3660 l 13647 3719 l 13543 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 3660 m 13647 3720 l 13543 3779 l 13440 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3720 m 13543 3780 l 13440 3839 l 13337 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1980 m 17280 2039 l 17280 1920 l 17383 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 1860 m 17280 1920 l 17280 1800 l 17383 1741 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 1740 m 17280 1800 l 17280 1680 l 17383 1621 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 1620 m 17280 1680 l 17280 1560 l 17383 1501 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 1500 m 17280 1560 l 17280 1440 l 17383 1381 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 1320 m 17177 1380 l 17177 1260 l 17280 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 1200 m 17177 1260 l 17177 1140 l 17280 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 1080 m 17177 1140 l 17177 1020 l 17280 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 960 m 17177 1020 l 17177 900 l 17280 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 840 m 17177 900 l 17177 780 l 17280 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 720 m 17177 780 l 17177 660 l 17280 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 600 m 17177 660 l 17177 540 l 17280 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 480 m 17177 540 l 17177 420 l 17280 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 360 m 17177 420 l 17177 300 l 17280 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 240 m 17177 300 l 17177 180 l 17280 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 120 m 17177 180 l 17177 60 l 17280 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2040 m 17177 2099 l 17177 1979 l 17280 1920 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 1920 m 17177 1979 l 17177 1860 l 17280 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 1800 m 17177 1860 l 17177 1740 l 17280 1681 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 1680 m 17177 1740 l 17177 1620 l 17280 1561 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17177 1500 m 17073 1560 l 17073 1440 l 17177 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 1380 m 17073 1440 l 17073 1320 l 17177 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 1260 m 17073 1320 l 17073 1200 l 17177 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 1140 m 17073 1200 l 17073 1080 l 17177 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 1020 m 17073 1080 l 17073 960 l 17177 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 900 m 17073 960 l 17073 840 l 17177 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 780 m 17073 840 l 17073 720 l 17177 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 660 m 17073 720 l 17073 600 l 17177 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 540 m 17073 600 l 17073 480 l 17177 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 420 m 17073 480 l 17073 360 l 17177 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 300 m 17073 360 l 17073 240 l 17177 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 180 m 17073 240 l 17073 120 l 17177 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2100 m 17073 2159 l 17073 2039 l 17177 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17177 1980 m 17073 2039 l 17073 1920 l 17177 1861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17177 1860 m 17073 1920 l 17073 1800 l 17177 1741 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17073 1680 m 16969 1740 l 16969 1620 l 17073 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 1560 m 16969 1620 l 16969 1500 l 17073 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 1440 m 16969 1500 l 16969 1380 l 17073 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 1320 m 16969 1380 l 16969 1260 l 17073 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 1200 m 16969 1260 l 16969 1140 l 17073 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 1080 m 16969 1140 l 16969 1020 l 17073 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 960 m 16969 1020 l 16969 900 l 17073 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 840 m 16969 900 l 16969 780 l 17073 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 720 m 16969 780 l 16969 660 l 17073 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 600 m 16969 660 l 16969 540 l 17073 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 480 m 16969 540 l 16969 420 l 17073 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 360 m 16969 420 l 16969 300 l 17073 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 240 m 16969 300 l 16969 180 l 17073 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2160 m 16969 2219 l 16969 2099 l 17073 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17073 2040 m 16969 2099 l 16969 1979 l 17073 1920 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17073 1920 m 16969 1979 l 16969 1860 l 17073 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 16969 1740 m 16865 1800 l 16865 1680 l 16969 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1620 m 16865 1680 l 16865 1560 l 16969 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1500 m 16865 1560 l 16865 1440 l 16969 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1380 m 16865 1440 l 16865 1320 l 16969 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1260 m 16865 1320 l 16865 1200 l 16969 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1140 m 16865 1200 l 16865 1080 l 16969 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 1020 m 16865 1080 l 16865 960 l 16969 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 900 m 16865 960 l 16865 840 l 16969 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 780 m 16865 840 l 16865 720 l 16969 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 660 m 16865 720 l 16865 600 l 16969 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 540 m 16865 600 l 16865 480 l 16969 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 420 m 16865 480 l 16865 360 l 16969 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 300 m 16865 360 l 16865 240 l 16969 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2160 m 16761 2219 l 16761 2099 l 16865 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2040 m 16761 2099 l 16761 1979 l 16865 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1920 m 16761 1979 l 16761 1860 l 16865 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1800 m 16761 1860 l 16761 1740 l 16865 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1680 m 16761 1740 l 16761 1620 l 16865 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1560 m 16761 1620 l 16761 1500 l 16865 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1440 m 16761 1500 l 16761 1380 l 16865 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1320 m 16761 1380 l 16761 1260 l 16865 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1200 m 16761 1260 l 16761 1140 l 16865 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 1080 m 16761 1140 l 16761 1020 l 16865 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 960 m 16761 1020 l 16761 900 l 16865 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 840 m 16761 900 l 16761 780 l 16865 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 720 m 16761 780 l 16761 660 l 16865 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 600 m 16761 660 l 16761 540 l 16865 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 480 m 16761 540 l 16761 420 l 16865 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 360 m 16761 420 l 16761 300 l 16865 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2220 m 16657 2279 l 16657 2159 l 16761 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2100 m 16657 2159 l 16657 2039 l 16761 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1980 m 16657 2039 l 16657 1920 l 16761 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1860 m 16657 1920 l 16657 1800 l 16761 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1740 m 16657 1800 l 16657 1680 l 16761 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1620 m 16657 1680 l 16657 1560 l 16761 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1500 m 16657 1560 l 16657 1440 l 16761 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1380 m 16657 1440 l 16657 1320 l 16761 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1260 m 16657 1320 l 16657 1200 l 16761 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1140 m 16657 1200 l 16657 1080 l 16761 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 1020 m 16657 1080 l 16657 960 l 16761 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 900 m 16657 960 l 16657 840 l 16761 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 780 m 16657 840 l 16657 720 l 16761 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 660 m 16657 720 l 16657 600 l 16761 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 540 m 16657 600 l 16657 480 l 16761 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 420 m 16657 480 l 16657 360 l 16761 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2280 m 16553 2339 l 16553 2219 l 16657 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2160 m 16553 2219 l 16553 2099 l 16657 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2040 m 16553 2099 l 16553 1979 l 16657 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1920 m 16553 1979 l 16553 1860 l 16657 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1800 m 16553 1860 l 16553 1740 l 16657 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1680 m 16553 1740 l 16553 1620 l 16657 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1560 m 16553 1620 l 16553 1500 l 16657 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1440 m 16553 1500 l 16553 1380 l 16657 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1320 m 16553 1380 l 16553 1260 l 16657 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1200 m 16553 1260 l 16553 1140 l 16657 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 1080 m 16553 1140 l 16553 1020 l 16657 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 960 m 16553 1020 l 16553 900 l 16657 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 840 m 16553 900 l 16553 780 l 16657 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 720 m 16553 780 l 16553 660 l 16657 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 600 m 16553 660 l 16553 540 l 16657 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 480 m 16553 540 l 16553 420 l 16657 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2340 m 16449 2399 l 16449 2279 l 16553 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2220 m 16449 2279 l 16449 2159 l 16553 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2100 m 16449 2159 l 16449 2039 l 16553 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1980 m 16449 2039 l 16449 1920 l 16553 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1860 m 16449 1920 l 16449 1800 l 16553 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1740 m 16449 1800 l 16449 1680 l 16553 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1620 m 16449 1680 l 16449 1560 l 16553 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1500 m 16449 1560 l 16449 1440 l 16553 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1380 m 16449 1440 l 16449 1320 l 16553 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1260 m 16449 1320 l 16449 1200 l 16553 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1140 m 16449 1200 l 16449 1080 l 16553 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 1020 m 16449 1080 l 16449 960 l 16553 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 900 m 16449 960 l 16449 840 l 16553 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 780 m 16449 840 l 16449 720 l 16553 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 660 m 16449 720 l 16449 600 l 16553 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 540 m 16449 600 l 16449 480 l 16553 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2400 m 16345 2459 l 16345 2339 l 16449 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2280 m 16345 2339 l 16345 2219 l 16449 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2160 m 16345 2219 l 16345 2099 l 16449 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2040 m 16345 2099 l 16345 1979 l 16449 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1920 m 16345 1979 l 16345 1860 l 16449 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1800 m 16345 1860 l 16345 1740 l 16449 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1680 m 16345 1740 l 16345 1620 l 16449 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1560 m 16345 1620 l 16345 1500 l 16449 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1440 m 16345 1500 l 16345 1380 l 16449 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1320 m 16345 1380 l 16345 1260 l 16449 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1200 m 16345 1260 l 16345 1140 l 16449 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 1080 m 16345 1140 l 16345 1020 l 16449 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 960 m 16345 1020 l 16345 900 l 16449 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 840 m 16345 900 l 16345 780 l 16449 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 720 m 16345 780 l 16345 660 l 16449 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 600 m 16345 660 l 16345 540 l 16449 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2460 m 16241 2519 l 16241 2399 l 16345 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2340 m 16241 2399 l 16241 2279 l 16345 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2220 m 16241 2279 l 16241 2159 l 16345 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2100 m 16241 2159 l 16241 2039 l 16345 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1980 m 16241 2039 l 16241 1920 l 16345 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1860 m 16241 1920 l 16241 1800 l 16345 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1740 m 16241 1800 l 16241 1680 l 16345 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1620 m 16241 1680 l 16241 1560 l 16345 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1500 m 16241 1560 l 16241 1440 l 16345 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1380 m 16241 1440 l 16241 1320 l 16345 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1260 m 16241 1320 l 16241 1200 l 16345 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1140 m 16241 1200 l 16241 1080 l 16345 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 1020 m 16241 1080 l 16241 960 l 16345 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 900 m 16241 960 l 16241 840 l 16345 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 780 m 16241 840 l 16241 720 l 16345 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 660 m 16241 720 l 16241 600 l 16345 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2520 m 16137 2579 l 16137 2459 l 16241 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2400 m 16137 2459 l 16137 2339 l 16241 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2280 m 16137 2339 l 16137 2219 l 16241 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2160 m 16137 2219 l 16137 2099 l 16241 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2040 m 16137 2099 l 16137 1979 l 16241 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1920 m 16137 1979 l 16137 1860 l 16241 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1800 m 16137 1860 l 16137 1740 l 16241 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1680 m 16137 1740 l 16137 1620 l 16241 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1560 m 16137 1620 l 16137 1500 l 16241 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1440 m 16137 1500 l 16137 1380 l 16241 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1320 m 16137 1380 l 16137 1260 l 16241 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1200 m 16137 1260 l 16137 1140 l 16241 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 1080 m 16137 1140 l 16137 1020 l 16241 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 960 m 16137 1020 l 16137 900 l 16241 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 840 m 16137 900 l 16137 780 l 16241 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 720 m 16137 780 l 16137 660 l 16241 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2580 m 16033 2639 l 16033 2519 l 16137 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2460 m 16033 2519 l 16033 2399 l 16137 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2340 m 16033 2399 l 16033 2279 l 16137 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2220 m 16033 2279 l 16033 2159 l 16137 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2100 m 16033 2159 l 16033 2039 l 16137 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1980 m 16033 2039 l 16033 1920 l 16137 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1860 m 16033 1920 l 16033 1800 l 16137 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1740 m 16033 1800 l 16033 1680 l 16137 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1620 m 16033 1680 l 16033 1560 l 16137 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1500 m 16033 1560 l 16033 1440 l 16137 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1380 m 16033 1440 l 16033 1320 l 16137 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1260 m 16033 1320 l 16033 1200 l 16137 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1140 m 16033 1200 l 16033 1080 l 16137 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 1020 m 16033 1080 l 16033 960 l 16137 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 900 m 16033 960 l 16033 840 l 16137 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 780 m 16033 840 l 16033 720 l 16137 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2640 m 15930 2699 l 15930 2579 l 16033 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2520 m 15930 2579 l 15930 2459 l 16033 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2400 m 15930 2459 l 15930 2339 l 16033 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2280 m 15930 2339 l 15930 2219 l 16033 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2160 m 15930 2219 l 15930 2099 l 16033 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2040 m 15930 2099 l 15930 1979 l 16033 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1920 m 15930 1979 l 15930 1860 l 16033 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1800 m 15930 1860 l 15930 1740 l 16033 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1680 m 15930 1740 l 15930 1620 l 16033 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1560 m 15930 1620 l 15930 1500 l 16033 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1440 m 15930 1500 l 15930 1380 l 16033 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1320 m 15930 1380 l 15930 1260 l 16033 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1200 m 15930 1260 l 15930 1140 l 16033 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 1080 m 15930 1140 l 15930 1020 l 16033 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 960 m 15930 1020 l 15930 900 l 16033 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 840 m 15930 900 l 15930 780 l 16033 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2700 m 15826 2759 l 15826 2639 l 15930 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2580 m 15826 2639 l 15826 2519 l 15930 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2460 m 15826 2519 l 15826 2399 l 15930 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2340 m 15826 2399 l 15826 2279 l 15930 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2220 m 15826 2279 l 15826 2159 l 15930 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2100 m 15826 2159 l 15826 2039 l 15930 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1980 m 15826 2039 l 15826 1920 l 15930 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1860 m 15826 1920 l 15826 1800 l 15930 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1740 m 15826 1800 l 15826 1680 l 15930 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1620 m 15826 1680 l 15826 1560 l 15930 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1500 m 15826 1560 l 15826 1440 l 15930 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1380 m 15826 1440 l 15826 1320 l 15930 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1260 m 15826 1320 l 15826 1200 l 15930 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1140 m 15826 1200 l 15826 1080 l 15930 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 1020 m 15826 1080 l 15826 960 l 15930 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 900 m 15826 960 l 15826 840 l 15930 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2760 m 15722 2819 l 15722 2699 l 15826 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2640 m 15722 2699 l 15722 2579 l 15826 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2520 m 15722 2579 l 15722 2459 l 15826 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2400 m 15722 2459 l 15722 2339 l 15826 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2280 m 15722 2339 l 15722 2219 l 15826 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2160 m 15722 2219 l 15722 2099 l 15826 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2040 m 15722 2099 l 15722 1979 l 15826 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1920 m 15722 1979 l 15722 1860 l 15826 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1800 m 15722 1860 l 15722 1740 l 15826 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1680 m 15722 1740 l 15722 1620 l 15826 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1560 m 15722 1620 l 15722 1500 l 15826 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1440 m 15722 1500 l 15722 1380 l 15826 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1320 m 15722 1380 l 15722 1260 l 15826 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1200 m 15722 1260 l 15722 1140 l 15826 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 1080 m 15722 1140 l 15722 1020 l 15826 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 960 m 15722 1020 l 15722 900 l 15826 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2820 m 15618 2879 l 15618 2759 l 15722 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2700 m 15618 2759 l 15618 2639 l 15722 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2580 m 15618 2639 l 15618 2519 l 15722 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2460 m 15618 2519 l 15618 2399 l 15722 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2340 m 15618 2399 l 15618 2279 l 15722 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2220 m 15618 2279 l 15618 2159 l 15722 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2100 m 15618 2159 l 15618 2039 l 15722 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1980 m 15618 2039 l 15618 1920 l 15722 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1860 m 15618 1920 l 15618 1800 l 15722 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1740 m 15618 1800 l 15618 1680 l 15722 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1620 m 15618 1680 l 15618 1560 l 15722 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1500 m 15618 1560 l 15618 1440 l 15722 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1380 m 15618 1440 l 15618 1320 l 15722 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1260 m 15618 1320 l 15618 1200 l 15722 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1140 m 15618 1200 l 15618 1080 l 15722 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 1020 m 15618 1080 l 15618 960 l 15722 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2160 m 16865 2040 l 16969 2100 l 16969 2220 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 16865 2040 m 16865 1920 l 16969 1980 l 16969 2100 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 16865 1920 m 16865 1800 l 16969 1861 l 16969 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17073 1680 m 17073 1560 l 17177 1621 l 17177 1741 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 1500 m 17177 1380 l 17280 1441 l 17280 1561 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17280 1320 m 17280 1200 l 17383 1261 l 17383 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 1200 m 17280 1080 l 17383 1141 l 17383 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 1080 m 17280 960 l 17383 1021 l 17383 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 960 m 17280 840 l 17383 901 l 17383 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 840 m 17280 720 l 17383 781 l 17383 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 720 m 17280 600 l 17383 661 l 17383 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 600 m 17280 480 l 17383 541 l 17383 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 480 m 17280 360 l 17383 421 l 17383 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 360 m 17280 240 l 17383 301 l 17383 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 240 m 17280 120 l 17383 181 l 17383 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 120 m 17280 0 l 17383 61 l 17383 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1980 m 17383 1860 l 17487 1920 l 17487 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1860 m 17383 1740 l 17487 1801 l 17487 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1740 m 17383 1620 l 17487 1681 l 17487 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1620 m 17383 1500 l 17487 1561 l 17487 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1500 m 17383 1380 l 17487 1441 l 17487 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1380 m 17383 1260 l 17487 1321 l 17487 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1260 m 17383 1140 l 17487 1201 l 17487 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1140 m 17383 1020 l 17487 1081 l 17487 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1020 m 17383 900 l 17487 961 l 17487 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 900 m 17383 780 l 17487 841 l 17487 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 780 m 17383 660 l 17487 721 l 17487 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 660 m 17383 540 l 17487 601 l 17487 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 540 m 17383 420 l 17487 481 l 17487 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 420 m 17383 300 l 17487 361 l 17487 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 300 m 17383 180 l 17487 241 l 17487 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 180 m 17383 60 l 17487 121 l 17487 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2040 m 17487 1920 l 17591 1980 l 17591 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1920 m 17487 1800 l 17591 1861 l 17591 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1800 m 17487 1680 l 17591 1741 l 17591 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1680 m 17487 1560 l 17591 1621 l 17591 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1560 m 17487 1440 l 17591 1501 l 17591 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1440 m 17487 1320 l 17591 1381 l 17591 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1320 m 17487 1200 l 17591 1261 l 17591 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1200 m 17487 1080 l 17591 1141 l 17591 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 1080 m 17487 960 l 17591 1021 l 17591 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 960 m 17487 840 l 17591 901 l 17591 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 840 m 17487 720 l 17591 781 l 17591 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 720 m 17487 600 l 17591 661 l 17591 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 600 m 17487 480 l 17591 541 l 17591 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 480 m 17487 360 l 17591 421 l 17591 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 360 m 17487 240 l 17591 301 l 17591 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 240 m 17487 120 l 17591 181 l 17591 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2100 m 17591 1980 l 17695 2040 l 17695 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1980 m 17591 1860 l 17695 1920 l 17695 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1860 m 17591 1740 l 17695 1801 l 17695 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1740 m 17591 1620 l 17695 1681 l 17695 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1620 m 17591 1500 l 17695 1561 l 17695 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1500 m 17591 1380 l 17695 1441 l 17695 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1380 m 17591 1260 l 17695 1321 l 17695 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1260 m 17591 1140 l 17695 1201 l 17695 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1140 m 17591 1020 l 17695 1081 l 17695 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 1020 m 17591 900 l 17695 961 l 17695 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 900 m 17591 780 l 17695 841 l 17695 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 780 m 17591 660 l 17695 721 l 17695 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 660 m 17591 540 l 17695 601 l 17695 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 540 m 17591 420 l 17695 481 l 17695 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 420 m 17591 300 l 17695 361 l 17695 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 300 m 17591 180 l 17695 241 l 17695 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2160 m 17695 2040 l 17799 2100 l 17799 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2040 m 17695 1920 l 17799 1980 l 17799 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1920 m 17695 1800 l 17799 1861 l 17799 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1800 m 17695 1680 l 17799 1741 l 17799 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1680 m 17695 1560 l 17799 1621 l 17799 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1560 m 17695 1440 l 17799 1501 l 17799 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1440 m 17695 1320 l 17799 1381 l 17799 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1320 m 17695 1200 l 17799 1261 l 17799 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1200 m 17695 1080 l 17799 1141 l 17799 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 1080 m 17695 960 l 17799 1021 l 17799 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 960 m 17695 840 l 17799 901 l 17799 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 840 m 17695 720 l 17799 781 l 17799 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 720 m 17695 600 l 17799 661 l 17799 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 600 m 17695 480 l 17799 541 l 17799 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 480 m 17695 360 l 17799 421 l 17799 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 360 m 17695 240 l 17799 301 l 17799 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2220 m 17799 2100 l 17903 2160 l 17903 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2100 m 17799 1980 l 17903 2040 l 17903 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1980 m 17799 1860 l 17903 1920 l 17903 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1860 m 17799 1740 l 17903 1801 l 17903 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1740 m 17799 1620 l 17903 1681 l 17903 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1620 m 17799 1500 l 17903 1561 l 17903 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1500 m 17799 1380 l 17903 1441 l 17903 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1380 m 17799 1260 l 17903 1321 l 17903 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1260 m 17799 1140 l 17903 1201 l 17903 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1140 m 17799 1020 l 17903 1081 l 17903 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 1020 m 17799 900 l 17903 961 l 17903 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 900 m 17799 780 l 17903 841 l 17903 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 780 m 17799 660 l 17903 721 l 17903 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 660 m 17799 540 l 17903 601 l 17903 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 540 m 17799 420 l 17903 481 l 17903 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 420 m 17799 300 l 17903 361 l 17903 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2280 m 17903 2160 l 18007 2220 l 18007 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2160 m 17903 2040 l 18007 2100 l 18007 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2040 m 17903 1920 l 18007 1980 l 18007 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1920 m 17903 1800 l 18007 1861 l 18007 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1800 m 17903 1680 l 18007 1741 l 18007 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1680 m 17903 1560 l 18007 1621 l 18007 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1560 m 17903 1440 l 18007 1501 l 18007 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1440 m 17903 1320 l 18007 1381 l 18007 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1320 m 17903 1200 l 18007 1261 l 18007 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1200 m 17903 1080 l 18007 1141 l 18007 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 1080 m 17903 960 l 18007 1021 l 18007 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 960 m 17903 840 l 18007 901 l 18007 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 840 m 17903 720 l 18007 781 l 18007 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 720 m 17903 600 l 18007 661 l 18007 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 600 m 17903 480 l 18007 541 l 18007 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 480 m 17903 360 l 18007 421 l 18007 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2340 m 18007 2220 l 18111 2280 l 18111 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2220 m 18007 2100 l 18111 2160 l 18111 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2100 m 18007 1980 l 18111 2040 l 18111 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1980 m 18007 1860 l 18111 1920 l 18111 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1860 m 18007 1740 l 18111 1801 l 18111 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1740 m 18007 1620 l 18111 1681 l 18111 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1620 m 18007 1500 l 18111 1561 l 18111 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1500 m 18007 1380 l 18111 1441 l 18111 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1380 m 18007 1260 l 18111 1321 l 18111 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1260 m 18007 1140 l 18111 1201 l 18111 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1140 m 18007 1020 l 18111 1081 l 18111 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 1020 m 18007 900 l 18111 961 l 18111 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 900 m 18007 780 l 18111 841 l 18111 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 780 m 18007 660 l 18111 721 l 18111 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 660 m 18007 540 l 18111 601 l 18111 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 540 m 18007 420 l 18111 481 l 18111 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2400 m 18111 2280 l 18215 2340 l 18215 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2280 m 18111 2160 l 18215 2220 l 18215 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2160 m 18111 2040 l 18215 2100 l 18215 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2040 m 18111 1920 l 18215 1980 l 18215 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1920 m 18111 1800 l 18215 1861 l 18215 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1800 m 18111 1680 l 18215 1741 l 18215 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1680 m 18111 1560 l 18215 1621 l 18215 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1560 m 18111 1440 l 18215 1501 l 18215 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1440 m 18111 1320 l 18215 1381 l 18215 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1320 m 18111 1200 l 18215 1261 l 18215 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1200 m 18111 1080 l 18215 1141 l 18215 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 1080 m 18111 960 l 18215 1021 l 18215 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 960 m 18111 840 l 18215 901 l 18215 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 840 m 18111 720 l 18215 781 l 18215 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 720 m 18111 600 l 18215 661 l 18215 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 600 m 18111 480 l 18215 541 l 18215 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2460 m 18215 2340 l 18319 2400 l 18319 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2340 m 18215 2220 l 18319 2280 l 18319 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2220 m 18215 2100 l 18319 2160 l 18319 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2100 m 18215 1980 l 18319 2040 l 18319 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1980 m 18215 1860 l 18319 1920 l 18319 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1860 m 18215 1740 l 18319 1801 l 18319 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1740 m 18215 1620 l 18319 1681 l 18319 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1620 m 18215 1500 l 18319 1561 l 18319 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1500 m 18215 1380 l 18319 1441 l 18319 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1380 m 18215 1260 l 18319 1321 l 18319 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1260 m 18215 1140 l 18319 1201 l 18319 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1140 m 18215 1020 l 18319 1081 l 18319 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 1020 m 18215 900 l 18319 961 l 18319 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 900 m 18215 780 l 18319 841 l 18319 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 780 m 18215 660 l 18319 721 l 18319 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 660 m 18215 540 l 18319 601 l 18319 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2520 m 18319 2400 l 18423 2460 l 18423 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2400 m 18319 2280 l 18423 2340 l 18423 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2280 m 18319 2160 l 18423 2220 l 18423 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2160 m 18319 2040 l 18423 2100 l 18423 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2040 m 18319 1920 l 18423 1980 l 18423 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1920 m 18319 1800 l 18423 1861 l 18423 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1800 m 18319 1680 l 18423 1741 l 18423 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1680 m 18319 1560 l 18423 1621 l 18423 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1560 m 18319 1440 l 18423 1501 l 18423 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1440 m 18319 1320 l 18423 1381 l 18423 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1320 m 18319 1200 l 18423 1261 l 18423 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1200 m 18319 1080 l 18423 1141 l 18423 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 1080 m 18319 960 l 18423 1021 l 18423 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 960 m 18319 840 l 18423 901 l 18423 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 840 m 18319 720 l 18423 781 l 18423 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 720 m 18319 600 l 18423 661 l 18423 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2580 m 18423 2460 l 18527 2520 l 18527 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2460 m 18423 2340 l 18527 2400 l 18527 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2340 m 18423 2220 l 18527 2280 l 18527 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2220 m 18423 2100 l 18527 2160 l 18527 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2100 m 18423 1980 l 18527 2040 l 18527 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1980 m 18423 1860 l 18527 1920 l 18527 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1860 m 18423 1740 l 18527 1801 l 18527 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1740 m 18423 1620 l 18527 1681 l 18527 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1620 m 18423 1500 l 18527 1561 l 18527 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1500 m 18423 1380 l 18527 1441 l 18527 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1380 m 18423 1260 l 18527 1321 l 18527 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1260 m 18423 1140 l 18527 1201 l 18527 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1140 m 18423 1020 l 18527 1081 l 18527 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 1020 m 18423 900 l 18527 961 l 18527 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 900 m 18423 780 l 18527 841 l 18527 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 780 m 18423 660 l 18527 721 l 18527 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2640 m 18527 2520 l 18630 2580 l 18630 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2520 m 18527 2400 l 18630 2460 l 18630 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2400 m 18527 2280 l 18630 2340 l 18630 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2280 m 18527 2160 l 18630 2220 l 18630 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2160 m 18527 2040 l 18630 2100 l 18630 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2040 m 18527 1920 l 18630 1980 l 18630 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1920 m 18527 1800 l 18630 1861 l 18630 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1800 m 18527 1680 l 18630 1741 l 18630 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1680 m 18527 1560 l 18630 1621 l 18630 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1560 m 18527 1440 l 18630 1501 l 18630 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1440 m 18527 1320 l 18630 1381 l 18630 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1320 m 18527 1200 l 18630 1261 l 18630 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1200 m 18527 1080 l 18630 1141 l 18630 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 1080 m 18527 960 l 18630 1021 l 18630 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 960 m 18527 840 l 18630 901 l 18630 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 840 m 18527 720 l 18630 781 l 18630 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2700 m 18630 2580 l 18734 2640 l 18734 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2580 m 18630 2460 l 18734 2520 l 18734 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2460 m 18630 2340 l 18734 2400 l 18734 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2340 m 18630 2220 l 18734 2280 l 18734 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2220 m 18630 2100 l 18734 2160 l 18734 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2100 m 18630 1980 l 18734 2040 l 18734 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1980 m 18630 1860 l 18734 1920 l 18734 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1860 m 18630 1740 l 18734 1801 l 18734 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1740 m 18630 1620 l 18734 1681 l 18734 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1620 m 18630 1500 l 18734 1561 l 18734 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1500 m 18630 1380 l 18734 1441 l 18734 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1380 m 18630 1260 l 18734 1321 l 18734 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1260 m 18630 1140 l 18734 1201 l 18734 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1140 m 18630 1020 l 18734 1081 l 18734 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 1020 m 18630 900 l 18734 961 l 18734 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 900 m 18630 780 l 18734 841 l 18734 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2760 m 18734 2640 l 18838 2700 l 18838 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2640 m 18734 2520 l 18838 2580 l 18838 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2520 m 18734 2400 l 18838 2460 l 18838 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2400 m 18734 2280 l 18838 2340 l 18838 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2280 m 18734 2160 l 18838 2220 l 18838 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2160 m 18734 2040 l 18838 2100 l 18838 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2040 m 18734 1920 l 18838 1980 l 18838 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1920 m 18734 1800 l 18838 1861 l 18838 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1800 m 18734 1680 l 18838 1741 l 18838 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1680 m 18734 1560 l 18838 1621 l 18838 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1560 m 18734 1440 l 18838 1501 l 18838 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1440 m 18734 1320 l 18838 1381 l 18838 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1320 m 18734 1200 l 18838 1261 l 18838 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1200 m 18734 1080 l 18838 1141 l 18838 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 1080 m 18734 960 l 18838 1021 l 18838 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 960 m 18734 840 l 18838 901 l 18838 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2820 m 18838 2700 l 18942 2760 l 18942 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2700 m 18838 2580 l 18942 2640 l 18942 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2580 m 18838 2460 l 18942 2520 l 18942 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2460 m 18838 2340 l 18942 2400 l 18942 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2340 m 18838 2220 l 18942 2280 l 18942 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2220 m 18838 2100 l 18942 2160 l 18942 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2100 m 18838 1980 l 18942 2040 l 18942 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1980 m 18838 1860 l 18942 1920 l 18942 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1860 m 18838 1740 l 18942 1801 l 18942 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1740 m 18838 1620 l 18942 1681 l 18942 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1620 m 18838 1500 l 18942 1561 l 18942 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1500 m 18838 1380 l 18942 1441 l 18942 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1380 m 18838 1260 l 18942 1321 l 18942 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1260 m 18838 1140 l 18942 1201 l 18942 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1140 m 18838 1020 l 18942 1081 l 18942 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 1020 m 18838 900 l 18942 961 l 18942 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 1320 m 17383 1381 l 17280 1440 l 17177 1380 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 17177 1500 m 17280 1561 l 17177 1620 l 17073 1560 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 17073 1680 m 17177 1741 l 17073 1800 l 16969 1740 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 16969 1740 m 17073 1801 l 16969 1860 l 16865 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 16865 2160 m 16969 2220 l 16865 2279 l 16761 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2220 m 16865 2280 l 16761 2339 l 16657 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2280 m 16761 2340 l 16657 2399 l 16553 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2340 m 16657 2400 l 16553 2459 l 16449 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2400 m 16553 2460 l 16449 2519 l 16345 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2460 m 16449 2520 l 16345 2579 l 16241 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2520 m 16345 2580 l 16241 2639 l 16137 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2580 m 16241 2640 l 16137 2699 l 16033 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2640 m 16137 2700 l 16033 2759 l 15930 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2700 m 16033 2760 l 15930 2819 l 15826 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2760 m 15930 2820 l 15826 2879 l 15722 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 2820 m 15826 2880 l 15722 2939 l 15618 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 1980 m 17487 2040 l 17383 2099 l 17280 2039 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2040 m 17383 2100 l 17280 2159 l 17177 2099 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2100 m 17280 2160 l 17177 2219 l 17073 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2160 m 17177 2220 l 17073 2279 l 16969 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2220 m 17073 2280 l 16969 2339 l 16865 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2280 m 16969 2340 l 16865 2399 l 16761 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2340 m 16865 2400 l 16761 2459 l 16657 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2400 m 16761 2460 l 16657 2519 l 16553 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2460 m 16657 2520 l 16553 2579 l 16449 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2520 m 16553 2580 l 16449 2639 l 16345 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2580 m 16449 2640 l 16345 2699 l 16241 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2640 m 16345 2700 l 16241 2759 l 16137 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2700 m 16241 2760 l 16137 2819 l 16033 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2760 m 16137 2820 l 16033 2879 l 15930 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2820 m 16033 2880 l 15930 2939 l 15826 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 2880 m 15930 2940 l 15826 2999 l 15722 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2040 m 17591 2100 l 17487 2159 l 17383 2099 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2100 m 17487 2160 l 17383 2219 l 17280 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2160 m 17383 2220 l 17280 2279 l 17177 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2220 m 17280 2280 l 17177 2339 l 17073 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2280 m 17177 2340 l 17073 2399 l 16969 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2340 m 17073 2400 l 16969 2459 l 16865 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2400 m 16969 2460 l 16865 2519 l 16761 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2460 m 16865 2520 l 16761 2579 l 16657 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2520 m 16761 2580 l 16657 2639 l 16553 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2580 m 16657 2640 l 16553 2699 l 16449 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2640 m 16553 2700 l 16449 2759 l 16345 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2700 m 16449 2760 l 16345 2819 l 16241 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2760 m 16345 2820 l 16241 2879 l 16137 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2820 m 16241 2880 l 16137 2939 l 16033 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 2880 m 16137 2940 l 16033 2999 l 15930 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 2940 m 16033 3000 l 15930 3059 l 15826 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2100 m 17695 2160 l 17591 2219 l 17487 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2160 m 17591 2220 l 17487 2279 l 17383 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2220 m 17487 2280 l 17383 2339 l 17280 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2280 m 17383 2340 l 17280 2399 l 17177 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2340 m 17280 2400 l 17177 2459 l 17073 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2400 m 17177 2460 l 17073 2519 l 16969 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2460 m 17073 2520 l 16969 2579 l 16865 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2520 m 16969 2580 l 16865 2639 l 16761 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2580 m 16865 2640 l 16761 2699 l 16657 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2640 m 16761 2700 l 16657 2759 l 16553 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2700 m 16657 2760 l 16553 2819 l 16449 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2760 m 16553 2820 l 16449 2879 l 16345 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2820 m 16449 2880 l 16345 2939 l 16241 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 2880 m 16345 2940 l 16241 2999 l 16137 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 2940 m 16241 3000 l 16137 3059 l 16033 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 3000 m 16137 3060 l 16033 3119 l 15930 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2160 m 17799 2220 l 17695 2279 l 17591 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2220 m 17695 2280 l 17591 2339 l 17487 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2280 m 17591 2340 l 17487 2399 l 17383 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2340 m 17487 2400 l 17383 2459 l 17280 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2400 m 17383 2460 l 17280 2519 l 17177 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2460 m 17280 2520 l 17177 2579 l 17073 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2520 m 17177 2580 l 17073 2639 l 16969 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2580 m 17073 2640 l 16969 2699 l 16865 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2640 m 16969 2700 l 16865 2759 l 16761 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2700 m 16865 2760 l 16761 2819 l 16657 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2760 m 16761 2820 l 16657 2879 l 16553 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2820 m 16657 2880 l 16553 2939 l 16449 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 2880 m 16553 2940 l 16449 2999 l 16345 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 2940 m 16449 3000 l 16345 3059 l 16241 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 3000 m 16345 3060 l 16241 3119 l 16137 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 3060 m 16241 3120 l 16137 3179 l 16033 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2220 m 17903 2280 l 17799 2339 l 17695 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2280 m 17799 2340 l 17695 2399 l 17591 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2340 m 17695 2400 l 17591 2459 l 17487 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2400 m 17591 2460 l 17487 2519 l 17383 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2460 m 17487 2520 l 17383 2579 l 17280 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2520 m 17383 2580 l 17280 2639 l 17177 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2580 m 17280 2640 l 17177 2699 l 17073 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2640 m 17177 2700 l 17073 2759 l 16969 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2700 m 17073 2760 l 16969 2819 l 16865 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2760 m 16969 2820 l 16865 2879 l 16761 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2820 m 16865 2880 l 16761 2939 l 16657 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 2880 m 16761 2940 l 16657 2999 l 16553 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 2940 m 16657 3000 l 16553 3059 l 16449 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 3000 m 16553 3060 l 16449 3119 l 16345 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 3060 m 16449 3120 l 16345 3179 l 16241 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 3120 m 16345 3180 l 16241 3239 l 16137 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2280 m 18007 2340 l 17903 2399 l 17799 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2340 m 17903 2400 l 17799 2459 l 17695 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2400 m 17799 2460 l 17695 2519 l 17591 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2460 m 17695 2520 l 17591 2579 l 17487 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2520 m 17591 2580 l 17487 2639 l 17383 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2580 m 17487 2640 l 17383 2699 l 17280 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2640 m 17383 2700 l 17280 2759 l 17177 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2700 m 17280 2760 l 17177 2819 l 17073 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2760 m 17177 2820 l 17073 2879 l 16969 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2820 m 17073 2880 l 16969 2939 l 16865 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 2880 m 16969 2940 l 16865 2999 l 16761 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 2940 m 16865 3000 l 16761 3059 l 16657 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 3000 m 16761 3060 l 16657 3119 l 16553 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 3060 m 16657 3120 l 16553 3179 l 16449 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 3120 m 16553 3180 l 16449 3239 l 16345 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 3180 m 16449 3240 l 16345 3299 l 16241 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2340 m 18111 2400 l 18007 2459 l 17903 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2400 m 18007 2460 l 17903 2519 l 17799 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2460 m 17903 2520 l 17799 2579 l 17695 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2520 m 17799 2580 l 17695 2639 l 17591 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2580 m 17695 2640 l 17591 2699 l 17487 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2640 m 17591 2700 l 17487 2759 l 17383 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2700 m 17487 2760 l 17383 2819 l 17280 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2760 m 17383 2820 l 17280 2879 l 17177 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2820 m 17280 2880 l 17177 2939 l 17073 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 2880 m 17177 2940 l 17073 2999 l 16969 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 2940 m 17073 3000 l 16969 3059 l 16865 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 3000 m 16969 3060 l 16865 3119 l 16761 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 3060 m 16865 3120 l 16761 3179 l 16657 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 3120 m 16761 3180 l 16657 3239 l 16553 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 3180 m 16657 3240 l 16553 3299 l 16449 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 3240 m 16553 3300 l 16449 3359 l 16345 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2400 m 18215 2460 l 18111 2519 l 18007 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2460 m 18111 2520 l 18007 2579 l 17903 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2520 m 18007 2580 l 17903 2639 l 17799 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2580 m 17903 2640 l 17799 2699 l 17695 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2640 m 17799 2700 l 17695 2759 l 17591 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2700 m 17695 2760 l 17591 2819 l 17487 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2760 m 17591 2820 l 17487 2879 l 17383 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2820 m 17487 2880 l 17383 2939 l 17280 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 2880 m 17383 2940 l 17280 2999 l 17177 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 2940 m 17280 3000 l 17177 3059 l 17073 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3000 m 17177 3060 l 17073 3119 l 16969 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 3060 m 17073 3120 l 16969 3179 l 16865 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 3120 m 16969 3180 l 16865 3239 l 16761 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 3180 m 16865 3240 l 16761 3299 l 16657 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 3240 m 16761 3300 l 16657 3359 l 16553 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 3300 m 16657 3360 l 16553 3419 l 16449 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2460 m 18319 2520 l 18215 2579 l 18111 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2520 m 18215 2580 l 18111 2639 l 18007 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2580 m 18111 2640 l 18007 2699 l 17903 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2640 m 18007 2700 l 17903 2759 l 17799 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2700 m 17903 2760 l 17799 2819 l 17695 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2760 m 17799 2820 l 17695 2879 l 17591 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2820 m 17695 2880 l 17591 2939 l 17487 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 2880 m 17591 2940 l 17487 2999 l 17383 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 2940 m 17487 3000 l 17383 3059 l 17280 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3000 m 17383 3060 l 17280 3119 l 17177 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3060 m 17280 3120 l 17177 3179 l 17073 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3120 m 17177 3180 l 17073 3239 l 16969 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 3180 m 17073 3240 l 16969 3299 l 16865 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 3240 m 16969 3300 l 16865 3359 l 16761 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 3300 m 16865 3360 l 16761 3419 l 16657 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 3360 m 16761 3420 l 16657 3479 l 16553 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2520 m 18423 2580 l 18319 2639 l 18215 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2580 m 18319 2640 l 18215 2699 l 18111 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2640 m 18215 2700 l 18111 2759 l 18007 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2700 m 18111 2760 l 18007 2819 l 17903 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2760 m 18007 2820 l 17903 2879 l 17799 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2820 m 17903 2880 l 17799 2939 l 17695 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 2880 m 17799 2940 l 17695 2999 l 17591 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 2940 m 17695 3000 l 17591 3059 l 17487 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3000 m 17591 3060 l 17487 3119 l 17383 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3060 m 17487 3120 l 17383 3179 l 17280 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3120 m 17383 3180 l 17280 3239 l 17177 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3180 m 17280 3240 l 17177 3299 l 17073 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3240 m 17177 3300 l 17073 3359 l 16969 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 3300 m 17073 3360 l 16969 3419 l 16865 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 3360 m 16969 3420 l 16865 3479 l 16761 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 3420 m 16865 3480 l 16761 3539 l 16657 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2580 m 18527 2640 l 18423 2699 l 18319 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2640 m 18423 2700 l 18319 2759 l 18215 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2700 m 18319 2760 l 18215 2819 l 18111 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2760 m 18215 2820 l 18111 2879 l 18007 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2820 m 18111 2880 l 18007 2939 l 17903 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 2880 m 18007 2940 l 17903 2999 l 17799 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 2940 m 17903 3000 l 17799 3059 l 17695 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 3000 m 17799 3060 l 17695 3119 l 17591 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 3060 m 17695 3120 l 17591 3179 l 17487 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3120 m 17591 3180 l 17487 3239 l 17383 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3180 m 17487 3240 l 17383 3299 l 17280 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3240 m 17383 3300 l 17280 3359 l 17177 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3300 m 17280 3360 l 17177 3419 l 17073 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3360 m 17177 3420 l 17073 3479 l 16969 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 3420 m 17073 3480 l 16969 3539 l 16865 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 3480 m 16969 3540 l 16865 3599 l 16761 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2640 m 18630 2700 l 18527 2759 l 18423 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2700 m 18527 2760 l 18423 2819 l 18319 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2760 m 18423 2820 l 18319 2879 l 18215 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2820 m 18319 2880 l 18215 2939 l 18111 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 2880 m 18215 2940 l 18111 2999 l 18007 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 2940 m 18111 3000 l 18007 3059 l 17903 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 3000 m 18007 3060 l 17903 3119 l 17799 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 3060 m 17903 3120 l 17799 3179 l 17695 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 3120 m 17799 3180 l 17695 3239 l 17591 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 3180 m 17695 3240 l 17591 3299 l 17487 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3240 m 17591 3300 l 17487 3359 l 17383 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3300 m 17487 3360 l 17383 3419 l 17280 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3360 m 17383 3420 l 17280 3479 l 17177 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3420 m 17280 3480 l 17177 3539 l 17073 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3480 m 17177 3540 l 17073 3599 l 16969 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 3540 m 17073 3600 l 16969 3659 l 16865 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2700 m 18734 2760 l 18630 2819 l 18527 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2760 m 18630 2820 l 18527 2879 l 18423 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2820 m 18527 2880 l 18423 2939 l 18319 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 2880 m 18423 2940 l 18319 2999 l 18215 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 2940 m 18319 3000 l 18215 3059 l 18111 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 3000 m 18215 3060 l 18111 3119 l 18007 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 3060 m 18111 3120 l 18007 3179 l 17903 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 3120 m 18007 3180 l 17903 3239 l 17799 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 3180 m 17903 3240 l 17799 3299 l 17695 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 3240 m 17799 3300 l 17695 3359 l 17591 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 3300 m 17695 3360 l 17591 3419 l 17487 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3360 m 17591 3420 l 17487 3479 l 17383 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3420 m 17487 3480 l 17383 3539 l 17280 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3480 m 17383 3540 l 17280 3599 l 17177 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3540 m 17280 3600 l 17177 3659 l 17073 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 3600 m 17177 3660 l 17073 3719 l 16969 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2760 m 18838 2820 l 18734 2879 l 18630 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2820 m 18734 2880 l 18630 2939 l 18527 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 2880 m 18630 2940 l 18527 2999 l 18423 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 2940 m 18527 3000 l 18423 3059 l 18319 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 3000 m 18423 3060 l 18319 3119 l 18215 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 3060 m 18319 3120 l 18215 3179 l 18111 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 3120 m 18215 3180 l 18111 3239 l 18007 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 3180 m 18111 3240 l 18007 3299 l 17903 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 3240 m 18007 3300 l 17903 3359 l 17799 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 3300 m 17903 3360 l 17799 3419 l 17695 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 3360 m 17799 3420 l 17695 3479 l 17591 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 3420 m 17695 3480 l 17591 3539 l 17487 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3480 m 17591 3540 l 17487 3599 l 17383 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3540 m 17487 3600 l 17383 3659 l 17280 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3600 m 17383 3660 l 17280 3719 l 17177 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 3660 m 17280 3720 l 17177 3779 l 17073 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 2820 m 18942 2880 l 18838 2939 l 18734 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 2880 m 18838 2940 l 18734 2999 l 18630 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 2940 m 18734 3000 l 18630 3059 l 18527 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 3000 m 18630 3060 l 18527 3119 l 18423 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 3060 m 18527 3120 l 18423 3179 l 18319 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 3120 m 18423 3180 l 18319 3239 l 18215 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 3180 m 18319 3240 l 18215 3299 l 18111 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 3240 m 18215 3300 l 18111 3359 l 18007 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 3300 m 18111 3360 l 18007 3419 l 17903 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 3360 m 18007 3420 l 17903 3479 l 17799 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 3420 m 17903 3480 l 17799 3539 l 17695 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 3480 m 17799 3540 l 17695 3599 l 17591 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 3540 m 17695 3600 l 17591 3659 l 17487 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 3600 m 17591 3660 l 17487 3719 l 17383 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 3660 m 17487 3720 l 17383 3779 l 17280 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3720 m 17383 3780 l 17280 3839 l 17177 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2100 m 21327 2159 l 21327 2039 l 21431 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 21223 1860 m 21120 1920 l 21120 1800 l 21223 1741 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 21120 1680 m 21017 1740 l 21017 1620 l 21120 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1560 m 21017 1620 l 21017 1500 l 21120 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1440 m 21017 1500 l 21017 1380 l 21120 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1320 m 21017 1380 l 21017 1260 l 21120 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1200 m 21017 1260 l 21017 1140 l 21120 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1080 m 21017 1140 l 21017 1020 l 21120 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 960 m 21017 1020 l 21017 900 l 21120 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 840 m 21017 900 l 21017 780 l 21120 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 720 m 21017 780 l 21017 660 l 21120 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 600 m 21017 660 l 21017 540 l 21120 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 480 m 21017 540 l 21017 420 l 21120 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 360 m 21017 420 l 21017 300 l 21120 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 240 m 21017 300 l 21017 180 l 21120 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 120 m 21017 180 l 21017 60 l 21120 1 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2100 m 21120 2159 l 21120 2039 l 21223 1980 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 21120 1920 m 21017 1979 l 21017 1860 l 21120 1801 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 21017 1740 m 20913 1800 l 20913 1680 l 21017 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1620 m 20913 1680 l 20913 1560 l 21017 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1500 m 20913 1560 l 20913 1440 l 21017 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1380 m 20913 1440 l 20913 1320 l 21017 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1260 m 20913 1320 l 20913 1200 l 21017 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1140 m 20913 1200 l 20913 1080 l 21017 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 1020 m 20913 1080 l 20913 960 l 21017 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 900 m 20913 960 l 20913 840 l 21017 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 780 m 20913 840 l 20913 720 l 21017 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 660 m 20913 720 l 20913 600 l 21017 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 540 m 20913 600 l 20913 480 l 21017 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 420 m 20913 480 l 20913 360 l 21017 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 300 m 20913 360 l 20913 240 l 21017 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 180 m 20913 240 l 20913 120 l 21017 61 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2160 m 21017 2219 l 21017 2099 l 21120 2040 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20913 1920 m 20809 1979 l 20809 1860 l 20913 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1800 m 20809 1860 l 20809 1740 l 20913 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1680 m 20809 1740 l 20809 1620 l 20913 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1560 m 20809 1620 l 20809 1500 l 20913 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1440 m 20809 1500 l 20809 1380 l 20913 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1320 m 20809 1380 l 20809 1260 l 20913 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1200 m 20809 1260 l 20809 1140 l 20913 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 1080 m 20809 1140 l 20809 1020 l 20913 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 960 m 20809 1020 l 20809 900 l 20913 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 840 m 20809 900 l 20809 780 l 20913 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 720 m 20809 780 l 20809 660 l 20913 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 600 m 20809 660 l 20809 540 l 20913 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 480 m 20809 540 l 20809 420 l 20913 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 360 m 20809 420 l 20809 300 l 20913 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 240 m 20809 300 l 20809 180 l 20913 121 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2220 m 20913 2279 l 20913 2159 l 21017 2100 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20809 1980 m 20705 2039 l 20705 1920 l 20809 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1860 m 20705 1920 l 20705 1800 l 20809 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1740 m 20705 1800 l 20705 1680 l 20809 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1620 m 20705 1680 l 20705 1560 l 20809 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1500 m 20705 1560 l 20705 1440 l 20809 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1380 m 20705 1440 l 20705 1320 l 20809 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1260 m 20705 1320 l 20705 1200 l 20809 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1140 m 20705 1200 l 20705 1080 l 20809 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 1020 m 20705 1080 l 20705 960 l 20809 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 900 m 20705 960 l 20705 840 l 20809 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 780 m 20705 840 l 20705 720 l 20809 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 660 m 20705 720 l 20705 600 l 20809 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 540 m 20705 600 l 20705 480 l 20809 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 420 m 20705 480 l 20705 360 l 20809 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 300 m 20705 360 l 20705 240 l 20809 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2220 m 20705 2279 l 20705 2159 l 20809 2100 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20705 2040 m 20601 2099 l 20601 1979 l 20705 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1920 m 20601 1979 l 20601 1860 l 20705 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1800 m 20601 1860 l 20601 1740 l 20705 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1680 m 20601 1740 l 20601 1620 l 20705 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1560 m 20601 1620 l 20601 1500 l 20705 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1440 m 20601 1500 l 20601 1380 l 20705 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1320 m 20601 1380 l 20601 1260 l 20705 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1200 m 20601 1260 l 20601 1140 l 20705 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 1080 m 20601 1140 l 20601 1020 l 20705 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 960 m 20601 1020 l 20601 900 l 20705 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 840 m 20601 900 l 20601 780 l 20705 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 720 m 20601 780 l 20601 660 l 20705 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 600 m 20601 660 l 20601 540 l 20705 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 480 m 20601 540 l 20601 420 l 20705 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 360 m 20601 420 l 20601 300 l 20705 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2280 m 20601 2339 l 20601 2219 l 20705 2160 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20601 2100 m 20497 2159 l 20497 2039 l 20601 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1980 m 20497 2039 l 20497 1920 l 20601 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1860 m 20497 1920 l 20497 1800 l 20601 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1740 m 20497 1800 l 20497 1680 l 20601 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1620 m 20497 1680 l 20497 1560 l 20601 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1500 m 20497 1560 l 20497 1440 l 20601 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1380 m 20497 1440 l 20497 1320 l 20601 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1260 m 20497 1320 l 20497 1200 l 20601 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1140 m 20497 1200 l 20497 1080 l 20601 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 1020 m 20497 1080 l 20497 960 l 20601 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 900 m 20497 960 l 20497 840 l 20601 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 780 m 20497 840 l 20497 720 l 20601 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 660 m 20497 720 l 20497 600 l 20601 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 540 m 20497 600 l 20497 480 l 20601 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 420 m 20497 480 l 20497 360 l 20601 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2340 m 20497 2399 l 20497 2279 l 20601 2220 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20497 2160 m 20393 2219 l 20393 2099 l 20497 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2040 m 20393 2099 l 20393 1979 l 20497 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1920 m 20393 1979 l 20393 1860 l 20497 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1800 m 20393 1860 l 20393 1740 l 20497 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1680 m 20393 1740 l 20393 1620 l 20497 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1560 m 20393 1620 l 20393 1500 l 20497 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1440 m 20393 1500 l 20393 1380 l 20497 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1320 m 20393 1380 l 20393 1260 l 20497 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1200 m 20393 1260 l 20393 1140 l 20497 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 1080 m 20393 1140 l 20393 1020 l 20497 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 960 m 20393 1020 l 20393 900 l 20497 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 840 m 20393 900 l 20393 780 l 20497 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 720 m 20393 780 l 20393 660 l 20497 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 600 m 20393 660 l 20393 540 l 20497 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 480 m 20393 540 l 20393 420 l 20497 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2400 m 20393 2459 l 20393 2339 l 20497 2280 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 20393 2220 m 20289 2279 l 20289 2159 l 20393 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2100 m 20289 2159 l 20289 2039 l 20393 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1980 m 20289 2039 l 20289 1920 l 20393 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1860 m 20289 1920 l 20289 1800 l 20393 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1740 m 20289 1800 l 20289 1680 l 20393 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1620 m 20289 1680 l 20289 1560 l 20393 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1500 m 20289 1560 l 20289 1440 l 20393 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1380 m 20289 1440 l 20289 1320 l 20393 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1260 m 20289 1320 l 20289 1200 l 20393 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1140 m 20289 1200 l 20289 1080 l 20393 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 1020 m 20289 1080 l 20289 960 l 20393 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 900 m 20289 960 l 20289 840 l 20393 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 780 m 20289 840 l 20289 720 l 20393 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 660 m 20289 720 l 20289 600 l 20393 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 540 m 20289 600 l 20289 480 l 20393 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2400 m 20185 2459 l 20185 2339 l 20289 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2280 m 20185 2339 l 20185 2219 l 20289 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2160 m 20185 2219 l 20185 2099 l 20289 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2040 m 20185 2099 l 20185 1979 l 20289 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1920 m 20185 1979 l 20185 1860 l 20289 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1800 m 20185 1860 l 20185 1740 l 20289 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1680 m 20185 1740 l 20185 1620 l 20289 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1560 m 20185 1620 l 20185 1500 l 20289 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1440 m 20185 1500 l 20185 1380 l 20289 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1320 m 20185 1380 l 20185 1260 l 20289 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1200 m 20185 1260 l 20185 1140 l 20289 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 1080 m 20185 1140 l 20185 1020 l 20289 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 960 m 20185 1020 l 20185 900 l 20289 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 840 m 20185 900 l 20185 780 l 20289 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 720 m 20185 780 l 20185 660 l 20289 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 600 m 20185 660 l 20185 540 l 20289 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2460 m 20081 2519 l 20081 2399 l 20185 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2340 m 20081 2399 l 20081 2279 l 20185 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2220 m 20081 2279 l 20081 2159 l 20185 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2100 m 20081 2159 l 20081 2039 l 20185 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1980 m 20081 2039 l 20081 1920 l 20185 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1860 m 20081 1920 l 20081 1800 l 20185 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1740 m 20081 1800 l 20081 1680 l 20185 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1620 m 20081 1680 l 20081 1560 l 20185 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1500 m 20081 1560 l 20081 1440 l 20185 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1380 m 20081 1440 l 20081 1320 l 20185 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1260 m 20081 1320 l 20081 1200 l 20185 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1140 m 20081 1200 l 20081 1080 l 20185 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 1020 m 20081 1080 l 20081 960 l 20185 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 900 m 20081 960 l 20081 840 l 20185 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 780 m 20081 840 l 20081 720 l 20185 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 660 m 20081 720 l 20081 600 l 20185 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2520 m 19977 2579 l 19977 2459 l 20081 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2400 m 19977 2459 l 19977 2339 l 20081 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2280 m 19977 2339 l 19977 2219 l 20081 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2160 m 19977 2219 l 19977 2099 l 20081 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2040 m 19977 2099 l 19977 1979 l 20081 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1920 m 19977 1979 l 19977 1860 l 20081 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1800 m 19977 1860 l 19977 1740 l 20081 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1680 m 19977 1740 l 19977 1620 l 20081 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1560 m 19977 1620 l 19977 1500 l 20081 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1440 m 19977 1500 l 19977 1380 l 20081 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1320 m 19977 1380 l 19977 1260 l 20081 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1200 m 19977 1260 l 19977 1140 l 20081 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 1080 m 19977 1140 l 19977 1020 l 20081 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 960 m 19977 1020 l 19977 900 l 20081 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 840 m 19977 900 l 19977 780 l 20081 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 720 m 19977 780 l 19977 660 l 20081 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2580 m 19873 2639 l 19873 2519 l 19977 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2460 m 19873 2519 l 19873 2399 l 19977 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2340 m 19873 2399 l 19873 2279 l 19977 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2220 m 19873 2279 l 19873 2159 l 19977 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2100 m 19873 2159 l 19873 2039 l 19977 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1980 m 19873 2039 l 19873 1920 l 19977 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1860 m 19873 1920 l 19873 1800 l 19977 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1740 m 19873 1800 l 19873 1680 l 19977 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1620 m 19873 1680 l 19873 1560 l 19977 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1500 m 19873 1560 l 19873 1440 l 19977 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1380 m 19873 1440 l 19873 1320 l 19977 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1260 m 19873 1320 l 19873 1200 l 19977 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1140 m 19873 1200 l 19873 1080 l 19977 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 1020 m 19873 1080 l 19873 960 l 19977 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 900 m 19873 960 l 19873 840 l 19977 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 780 m 19873 840 l 19873 720 l 19977 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2640 m 19770 2699 l 19770 2579 l 19873 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2520 m 19770 2579 l 19770 2459 l 19873 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2400 m 19770 2459 l 19770 2339 l 19873 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2280 m 19770 2339 l 19770 2219 l 19873 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2160 m 19770 2219 l 19770 2099 l 19873 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2040 m 19770 2099 l 19770 1979 l 19873 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1920 m 19770 1979 l 19770 1860 l 19873 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1800 m 19770 1860 l 19770 1740 l 19873 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1680 m 19770 1740 l 19770 1620 l 19873 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1560 m 19770 1620 l 19770 1500 l 19873 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1440 m 19770 1500 l 19770 1380 l 19873 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1320 m 19770 1380 l 19770 1260 l 19873 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1200 m 19770 1260 l 19770 1140 l 19873 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 1080 m 19770 1140 l 19770 1020 l 19873 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 960 m 19770 1020 l 19770 900 l 19873 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 840 m 19770 900 l 19770 780 l 19873 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2700 m 19666 2759 l 19666 2639 l 19770 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2580 m 19666 2639 l 19666 2519 l 19770 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2460 m 19666 2519 l 19666 2399 l 19770 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2340 m 19666 2399 l 19666 2279 l 19770 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2220 m 19666 2279 l 19666 2159 l 19770 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2100 m 19666 2159 l 19666 2039 l 19770 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1980 m 19666 2039 l 19666 1920 l 19770 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1860 m 19666 1920 l 19666 1800 l 19770 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1740 m 19666 1800 l 19666 1680 l 19770 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1620 m 19666 1680 l 19666 1560 l 19770 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1500 m 19666 1560 l 19666 1440 l 19770 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1380 m 19666 1440 l 19666 1320 l 19770 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1260 m 19666 1320 l 19666 1200 l 19770 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1140 m 19666 1200 l 19666 1080 l 19770 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 1020 m 19666 1080 l 19666 960 l 19770 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 900 m 19666 960 l 19666 840 l 19770 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2760 m 19562 2819 l 19562 2699 l 19666 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2640 m 19562 2699 l 19562 2579 l 19666 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2520 m 19562 2579 l 19562 2459 l 19666 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2400 m 19562 2459 l 19562 2339 l 19666 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2280 m 19562 2339 l 19562 2219 l 19666 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2160 m 19562 2219 l 19562 2099 l 19666 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2040 m 19562 2099 l 19562 1979 l 19666 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1920 m 19562 1979 l 19562 1860 l 19666 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1800 m 19562 1860 l 19562 1740 l 19666 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1680 m 19562 1740 l 19562 1620 l 19666 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1560 m 19562 1620 l 19562 1500 l 19666 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1440 m 19562 1500 l 19562 1380 l 19666 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1320 m 19562 1380 l 19562 1260 l 19666 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1200 m 19562 1260 l 19562 1140 l 19666 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 1080 m 19562 1140 l 19562 1020 l 19666 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 960 m 19562 1020 l 19562 900 l 19666 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2820 m 19458 2879 l 19458 2759 l 19562 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2700 m 19458 2759 l 19458 2639 l 19562 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2580 m 19458 2639 l 19458 2519 l 19562 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2460 m 19458 2519 l 19458 2399 l 19562 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2340 m 19458 2399 l 19458 2279 l 19562 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2220 m 19458 2279 l 19458 2159 l 19562 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2100 m 19458 2159 l 19458 2039 l 19562 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1980 m 19458 2039 l 19458 1920 l 19562 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1860 m 19458 1920 l 19458 1800 l 19562 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1740 m 19458 1800 l 19458 1680 l 19562 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1620 m 19458 1680 l 19458 1560 l 19562 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1500 m 19458 1560 l 19458 1440 l 19562 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1380 m 19458 1440 l 19458 1320 l 19562 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1260 m 19458 1320 l 19458 1200 l 19562 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1140 m 19458 1200 l 19458 1080 l 19562 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 1020 m 19458 1080 l 19458 960 l 19562 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2400 m 20289 2280 l 20393 2340 l 20393 2460 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 20913 1920 m 20913 1800 l 21017 1861 l 21017 1980 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 21120 1680 m 21120 1560 l 21223 1621 l 21223 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1560 m 21120 1440 l 21223 1501 l 21223 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1440 m 21120 1320 l 21223 1381 l 21223 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1320 m 21120 1200 l 21223 1261 l 21223 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1200 m 21120 1080 l 21223 1141 l 21223 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1080 m 21120 960 l 21223 1021 l 21223 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 960 m 21120 840 l 21223 901 l 21223 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 840 m 21120 720 l 21223 781 l 21223 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 720 m 21120 600 l 21223 661 l 21223 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 600 m 21120 480 l 21223 541 l 21223 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 480 m 21120 360 l 21223 421 l 21223 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 360 m 21120 240 l 21223 301 l 21223 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 240 m 21120 120 l 21223 181 l 21223 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 120 m 21120 0 l 21223 61 l 21223 181 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2220 m 20809 2100 l 20913 2160 l 20913 2280 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 21223 1860 m 21223 1740 l 21327 1801 l 21327 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1740 m 21223 1620 l 21327 1681 l 21327 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1620 m 21223 1500 l 21327 1561 l 21327 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1500 m 21223 1380 l 21327 1441 l 21327 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1380 m 21223 1260 l 21327 1321 l 21327 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1260 m 21223 1140 l 21327 1201 l 21327 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1140 m 21223 1020 l 21327 1081 l 21327 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1020 m 21223 900 l 21327 961 l 21327 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 900 m 21223 780 l 21327 841 l 21327 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 780 m 21223 660 l 21327 721 l 21327 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 660 m 21223 540 l 21327 601 l 21327 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 540 m 21223 420 l 21327 481 l 21327 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 420 m 21223 300 l 21327 361 l 21327 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 300 m 21223 180 l 21327 241 l 21327 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 180 m 21223 60 l 21327 121 l 21327 241 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2100 m 21223 1980 l 21327 2040 l 21327 2160 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 21327 1920 m 21327 1800 l 21431 1861 l 21431 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1800 m 21327 1680 l 21431 1741 l 21431 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1680 m 21327 1560 l 21431 1621 l 21431 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1560 m 21327 1440 l 21431 1501 l 21431 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1440 m 21327 1320 l 21431 1381 l 21431 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1320 m 21327 1200 l 21431 1261 l 21431 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1200 m 21327 1080 l 21431 1141 l 21431 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1080 m 21327 960 l 21431 1021 l 21431 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 960 m 21327 840 l 21431 901 l 21431 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 840 m 21327 720 l 21431 781 l 21431 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 720 m 21327 600 l 21431 661 l 21431 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 600 m 21327 480 l 21431 541 l 21431 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 480 m 21327 360 l 21431 421 l 21431 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 360 m 21327 240 l 21431 301 l 21431 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 240 m 21327 120 l 21431 181 l 21431 301 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2100 m 21431 1980 l 21535 2040 l 21535 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1980 m 21431 1860 l 21535 1920 l 21535 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1860 m 21431 1740 l 21535 1801 l 21535 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1740 m 21431 1620 l 21535 1681 l 21535 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1620 m 21431 1500 l 21535 1561 l 21535 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1500 m 21431 1380 l 21535 1441 l 21535 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1380 m 21431 1260 l 21535 1321 l 21535 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1260 m 21431 1140 l 21535 1201 l 21535 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1140 m 21431 1020 l 21535 1081 l 21535 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 1020 m 21431 900 l 21535 961 l 21535 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 900 m 21431 780 l 21535 841 l 21535 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 780 m 21431 660 l 21535 721 l 21535 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 660 m 21431 540 l 21535 601 l 21535 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 540 m 21431 420 l 21535 481 l 21535 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 420 m 21431 300 l 21535 361 l 21535 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 300 m 21431 180 l 21535 241 l 21535 361 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2160 m 21535 2040 l 21639 2100 l 21639 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2040 m 21535 1920 l 21639 1980 l 21639 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1920 m 21535 1800 l 21639 1861 l 21639 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1800 m 21535 1680 l 21639 1741 l 21639 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1680 m 21535 1560 l 21639 1621 l 21639 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1560 m 21535 1440 l 21639 1501 l 21639 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1440 m 21535 1320 l 21639 1381 l 21639 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1320 m 21535 1200 l 21639 1261 l 21639 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1200 m 21535 1080 l 21639 1141 l 21639 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 1080 m 21535 960 l 21639 1021 l 21639 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 960 m 21535 840 l 21639 901 l 21639 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 840 m 21535 720 l 21639 781 l 21639 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 720 m 21535 600 l 21639 661 l 21639 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 600 m 21535 480 l 21639 541 l 21639 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 480 m 21535 360 l 21639 421 l 21639 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 360 m 21535 240 l 21639 301 l 21639 421 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2220 m 21639 2100 l 21743 2160 l 21743 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2100 m 21639 1980 l 21743 2040 l 21743 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1980 m 21639 1860 l 21743 1920 l 21743 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1860 m 21639 1740 l 21743 1801 l 21743 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1740 m 21639 1620 l 21743 1681 l 21743 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1620 m 21639 1500 l 21743 1561 l 21743 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1500 m 21639 1380 l 21743 1441 l 21743 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1380 m 21639 1260 l 21743 1321 l 21743 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1260 m 21639 1140 l 21743 1201 l 21743 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1140 m 21639 1020 l 21743 1081 l 21743 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 1020 m 21639 900 l 21743 961 l 21743 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 900 m 21639 780 l 21743 841 l 21743 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 780 m 21639 660 l 21743 721 l 21743 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 660 m 21639 540 l 21743 601 l 21743 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 540 m 21639 420 l 21743 481 l 21743 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 420 m 21639 300 l 21743 361 l 21743 481 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2280 m 21743 2160 l 21847 2220 l 21847 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2160 m 21743 2040 l 21847 2100 l 21847 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2040 m 21743 1920 l 21847 1980 l 21847 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1920 m 21743 1800 l 21847 1861 l 21847 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1800 m 21743 1680 l 21847 1741 l 21847 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1680 m 21743 1560 l 21847 1621 l 21847 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1560 m 21743 1440 l 21847 1501 l 21847 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1440 m 21743 1320 l 21847 1381 l 21847 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1320 m 21743 1200 l 21847 1261 l 21847 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1200 m 21743 1080 l 21847 1141 l 21847 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 1080 m 21743 960 l 21847 1021 l 21847 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 960 m 21743 840 l 21847 901 l 21847 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 840 m 21743 720 l 21847 781 l 21847 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 720 m 21743 600 l 21847 661 l 21847 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 600 m 21743 480 l 21847 541 l 21847 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 480 m 21743 360 l 21847 421 l 21847 541 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2340 m 21847 2220 l 21951 2280 l 21951 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2220 m 21847 2100 l 21951 2160 l 21951 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2100 m 21847 1980 l 21951 2040 l 21951 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1980 m 21847 1860 l 21951 1920 l 21951 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1860 m 21847 1740 l 21951 1801 l 21951 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1740 m 21847 1620 l 21951 1681 l 21951 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1620 m 21847 1500 l 21951 1561 l 21951 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1500 m 21847 1380 l 21951 1441 l 21951 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1380 m 21847 1260 l 21951 1321 l 21951 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1260 m 21847 1140 l 21951 1201 l 21951 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1140 m 21847 1020 l 21951 1081 l 21951 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 1020 m 21847 900 l 21951 961 l 21951 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 900 m 21847 780 l 21951 841 l 21951 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 780 m 21847 660 l 21951 721 l 21951 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 660 m 21847 540 l 21951 601 l 21951 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 540 m 21847 420 l 21951 481 l 21951 601 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2400 m 21951 2280 l 22055 2340 l 22055 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2280 m 21951 2160 l 22055 2220 l 22055 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2160 m 21951 2040 l 22055 2100 l 22055 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2040 m 21951 1920 l 22055 1980 l 22055 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1920 m 21951 1800 l 22055 1861 l 22055 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1800 m 21951 1680 l 22055 1741 l 22055 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1680 m 21951 1560 l 22055 1621 l 22055 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1560 m 21951 1440 l 22055 1501 l 22055 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1440 m 21951 1320 l 22055 1381 l 22055 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1320 m 21951 1200 l 22055 1261 l 22055 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1200 m 21951 1080 l 22055 1141 l 22055 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 1080 m 21951 960 l 22055 1021 l 22055 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 960 m 21951 840 l 22055 901 l 22055 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 840 m 21951 720 l 22055 781 l 22055 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 720 m 21951 600 l 22055 661 l 22055 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 600 m 21951 480 l 22055 541 l 22055 661 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2460 m 22055 2340 l 22159 2400 l 22159 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2340 m 22055 2220 l 22159 2280 l 22159 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2220 m 22055 2100 l 22159 2160 l 22159 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2100 m 22055 1980 l 22159 2040 l 22159 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1980 m 22055 1860 l 22159 1920 l 22159 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1860 m 22055 1740 l 22159 1801 l 22159 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1740 m 22055 1620 l 22159 1681 l 22159 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1620 m 22055 1500 l 22159 1561 l 22159 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1500 m 22055 1380 l 22159 1441 l 22159 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1380 m 22055 1260 l 22159 1321 l 22159 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1260 m 22055 1140 l 22159 1201 l 22159 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1140 m 22055 1020 l 22159 1081 l 22159 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 1020 m 22055 900 l 22159 961 l 22159 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 900 m 22055 780 l 22159 841 l 22159 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 780 m 22055 660 l 22159 721 l 22159 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 660 m 22055 540 l 22159 601 l 22159 721 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2520 m 22159 2400 l 22263 2460 l 22263 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2400 m 22159 2280 l 22263 2340 l 22263 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2280 m 22159 2160 l 22263 2220 l 22263 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2160 m 22159 2040 l 22263 2100 l 22263 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2040 m 22159 1920 l 22263 1980 l 22263 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1920 m 22159 1800 l 22263 1861 l 22263 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1800 m 22159 1680 l 22263 1741 l 22263 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1680 m 22159 1560 l 22263 1621 l 22263 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1560 m 22159 1440 l 22263 1501 l 22263 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1440 m 22159 1320 l 22263 1381 l 22263 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1320 m 22159 1200 l 22263 1261 l 22263 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1200 m 22159 1080 l 22263 1141 l 22263 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 1080 m 22159 960 l 22263 1021 l 22263 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 960 m 22159 840 l 22263 901 l 22263 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 840 m 22159 720 l 22263 781 l 22263 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 720 m 22159 600 l 22263 661 l 22263 781 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2580 m 22263 2460 l 22367 2520 l 22367 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2460 m 22263 2340 l 22367 2400 l 22367 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2340 m 22263 2220 l 22367 2280 l 22367 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2220 m 22263 2100 l 22367 2160 l 22367 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2100 m 22263 1980 l 22367 2040 l 22367 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1980 m 22263 1860 l 22367 1920 l 22367 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1860 m 22263 1740 l 22367 1801 l 22367 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1740 m 22263 1620 l 22367 1681 l 22367 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1620 m 22263 1500 l 22367 1561 l 22367 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1500 m 22263 1380 l 22367 1441 l 22367 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1380 m 22263 1260 l 22367 1321 l 22367 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1260 m 22263 1140 l 22367 1201 l 22367 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1140 m 22263 1020 l 22367 1081 l 22367 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 1020 m 22263 900 l 22367 961 l 22367 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 900 m 22263 780 l 22367 841 l 22367 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 780 m 22263 660 l 22367 721 l 22367 841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2640 m 22367 2520 l 22470 2580 l 22470 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2520 m 22367 2400 l 22470 2460 l 22470 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2400 m 22367 2280 l 22470 2340 l 22470 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2280 m 22367 2160 l 22470 2220 l 22470 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2160 m 22367 2040 l 22470 2100 l 22470 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2040 m 22367 1920 l 22470 1980 l 22470 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1920 m 22367 1800 l 22470 1861 l 22470 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1800 m 22367 1680 l 22470 1741 l 22470 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1680 m 22367 1560 l 22470 1621 l 22470 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1560 m 22367 1440 l 22470 1501 l 22470 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1440 m 22367 1320 l 22470 1381 l 22470 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1320 m 22367 1200 l 22470 1261 l 22470 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1200 m 22367 1080 l 22470 1141 l 22470 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 1080 m 22367 960 l 22470 1021 l 22470 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 960 m 22367 840 l 22470 901 l 22470 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 840 m 22367 720 l 22470 781 l 22470 901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2700 m 22470 2580 l 22574 2640 l 22574 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2580 m 22470 2460 l 22574 2520 l 22574 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2460 m 22470 2340 l 22574 2400 l 22574 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2340 m 22470 2220 l 22574 2280 l 22574 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2220 m 22470 2100 l 22574 2160 l 22574 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2100 m 22470 1980 l 22574 2040 l 22574 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1980 m 22470 1860 l 22574 1920 l 22574 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1860 m 22470 1740 l 22574 1801 l 22574 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1740 m 22470 1620 l 22574 1681 l 22574 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1620 m 22470 1500 l 22574 1561 l 22574 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1500 m 22470 1380 l 22574 1441 l 22574 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1380 m 22470 1260 l 22574 1321 l 22574 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1260 m 22470 1140 l 22574 1201 l 22574 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1140 m 22470 1020 l 22574 1081 l 22574 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 1020 m 22470 900 l 22574 961 l 22574 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 900 m 22470 780 l 22574 841 l 22574 961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2760 m 22574 2640 l 22678 2700 l 22678 2820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2640 m 22574 2520 l 22678 2580 l 22678 2700 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2520 m 22574 2400 l 22678 2460 l 22678 2580 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2400 m 22574 2280 l 22678 2340 l 22678 2460 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2280 m 22574 2160 l 22678 2220 l 22678 2340 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2160 m 22574 2040 l 22678 2100 l 22678 2220 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2040 m 22574 1920 l 22678 1980 l 22678 2100 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1920 m 22574 1800 l 22678 1861 l 22678 1980 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1800 m 22574 1680 l 22678 1741 l 22678 1861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1680 m 22574 1560 l 22678 1621 l 22678 1741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1560 m 22574 1440 l 22678 1501 l 22678 1621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1440 m 22574 1320 l 22678 1381 l 22678 1501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1320 m 22574 1200 l 22678 1261 l 22678 1381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1200 m 22574 1080 l 22678 1141 l 22678 1261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 1080 m 22574 960 l 22678 1021 l 22678 1141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 960 m 22574 840 l 22678 901 l 22678 1021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2820 m 22678 2700 l 22782 2760 l 22782 2880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2700 m 22678 2580 l 22782 2640 l 22782 2760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2580 m 22678 2460 l 22782 2520 l 22782 2640 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2460 m 22678 2340 l 22782 2400 l 22782 2520 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2340 m 22678 2220 l 22782 2280 l 22782 2400 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2220 m 22678 2100 l 22782 2160 l 22782 2280 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2100 m 22678 1980 l 22782 2040 l 22782 2160 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1980 m 22678 1860 l 22782 1920 l 22782 2040 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1860 m 22678 1740 l 22782 1801 l 22782 1920 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1740 m 22678 1620 l 22782 1681 l 22782 1801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1620 m 22678 1500 l 22782 1561 l 22782 1681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1500 m 22678 1380 l 22782 1441 l 22782 1561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1380 m 22678 1260 l 22782 1321 l 22782 1441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1260 m 22678 1140 l 22782 1201 l 22782 1321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1140 m 22678 1020 l 22782 1081 l 22782 1201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 1020 m 22678 900 l 22782 961 l 22782 1081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 1680 m 21223 1741 l 21120 1800 l 21017 1740 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 21017 1740 m 21120 1801 l 21017 1860 l 20913 1800 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20913 1920 m 21017 1980 l 20913 2039 l 20809 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20809 1980 m 20913 2040 l 20809 2099 l 20705 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20705 2040 m 20809 2100 l 20705 2159 l 20601 2099 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20601 2100 m 20705 2160 l 20601 2219 l 20497 2159 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20497 2160 m 20601 2220 l 20497 2279 l 20393 2219 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20393 2220 m 20497 2280 l 20393 2339 l 20289 2279 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20289 2400 m 20393 2460 l 20289 2519 l 20185 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2460 m 20289 2520 l 20185 2579 l 20081 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2520 m 20185 2580 l 20081 2639 l 19977 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2580 m 20081 2640 l 19977 2699 l 19873 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2640 m 19977 2700 l 19873 2759 l 19770 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2700 m 19873 2760 l 19770 2819 l 19666 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2760 m 19770 2820 l 19666 2879 l 19562 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19562 2820 m 19666 2880 l 19562 2939 l 19458 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 1860 m 21327 1920 l 21223 1979 l 21120 1920 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 21120 1920 m 21223 1980 l 21120 2039 l 21017 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 21017 1980 m 21120 2040 l 21017 2099 l 20913 2039 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20913 2040 m 21017 2100 l 20913 2159 l 20809 2099 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 20809 2220 m 20913 2280 l 20809 2339 l 20705 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2280 m 20809 2340 l 20705 2399 l 20601 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2340 m 20705 2400 l 20601 2459 l 20497 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2400 m 20601 2460 l 20497 2519 l 20393 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2460 m 20497 2520 l 20393 2579 l 20289 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2520 m 20393 2580 l 20289 2639 l 20185 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2580 m 20289 2640 l 20185 2699 l 20081 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2640 m 20185 2700 l 20081 2759 l 19977 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2700 m 20081 2760 l 19977 2819 l 19873 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2760 m 19977 2820 l 19873 2879 l 19770 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2820 m 19873 2880 l 19770 2939 l 19666 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19666 2880 m 19770 2940 l 19666 2999 l 19562 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 1920 m 21431 1980 l 21327 2039 l 21223 1979 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 21223 2100 m 21327 2160 l 21223 2219 l 21120 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2160 m 21223 2220 l 21120 2279 l 21017 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2220 m 21120 2280 l 21017 2339 l 20913 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2280 m 21017 2340 l 20913 2399 l 20809 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2340 m 20913 2400 l 20809 2459 l 20705 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2400 m 20809 2460 l 20705 2519 l 20601 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2460 m 20705 2520 l 20601 2579 l 20497 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2520 m 20601 2580 l 20497 2639 l 20393 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2580 m 20497 2640 l 20393 2699 l 20289 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2640 m 20393 2700 l 20289 2759 l 20185 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2700 m 20289 2760 l 20185 2819 l 20081 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2760 m 20185 2820 l 20081 2879 l 19977 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2820 m 20081 2880 l 19977 2939 l 19873 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 2880 m 19977 2940 l 19873 2999 l 19770 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19770 2940 m 19873 3000 l 19770 3059 l 19666 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2100 m 21535 2160 l 21431 2219 l 21327 2159 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2160 m 21431 2220 l 21327 2279 l 21223 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2220 m 21327 2280 l 21223 2339 l 21120 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2280 m 21223 2340 l 21120 2399 l 21017 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2340 m 21120 2400 l 21017 2459 l 20913 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2400 m 21017 2460 l 20913 2519 l 20809 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2460 m 20913 2520 l 20809 2579 l 20705 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2520 m 20809 2580 l 20705 2639 l 20601 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2580 m 20705 2640 l 20601 2699 l 20497 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2640 m 20601 2700 l 20497 2759 l 20393 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2700 m 20497 2760 l 20393 2819 l 20289 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2760 m 20393 2820 l 20289 2879 l 20185 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2820 m 20289 2880 l 20185 2939 l 20081 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 2880 m 20185 2940 l 20081 2999 l 19977 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 2940 m 20081 3000 l 19977 3059 l 19873 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19873 3000 m 19977 3060 l 19873 3119 l 19770 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2160 m 21639 2220 l 21535 2279 l 21431 2219 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2220 m 21535 2280 l 21431 2339 l 21327 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2280 m 21431 2340 l 21327 2399 l 21223 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2340 m 21327 2400 l 21223 2459 l 21120 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2400 m 21223 2460 l 21120 2519 l 21017 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2460 m 21120 2520 l 21017 2579 l 20913 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2520 m 21017 2580 l 20913 2639 l 20809 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2580 m 20913 2640 l 20809 2699 l 20705 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2640 m 20809 2700 l 20705 2759 l 20601 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2700 m 20705 2760 l 20601 2819 l 20497 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2760 m 20601 2820 l 20497 2879 l 20393 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2820 m 20497 2880 l 20393 2939 l 20289 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 2880 m 20393 2940 l 20289 2999 l 20185 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 2940 m 20289 3000 l 20185 3059 l 20081 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 3000 m 20185 3060 l 20081 3119 l 19977 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 19977 3060 m 20081 3120 l 19977 3179 l 19873 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2220 m 21743 2280 l 21639 2339 l 21535 2279 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2280 m 21639 2340 l 21535 2399 l 21431 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2340 m 21535 2400 l 21431 2459 l 21327 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2400 m 21431 2460 l 21327 2519 l 21223 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2460 m 21327 2520 l 21223 2579 l 21120 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2520 m 21223 2580 l 21120 2639 l 21017 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2580 m 21120 2640 l 21017 2699 l 20913 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2640 m 21017 2700 l 20913 2759 l 20809 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2700 m 20913 2760 l 20809 2819 l 20705 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2760 m 20809 2820 l 20705 2879 l 20601 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2820 m 20705 2880 l 20601 2939 l 20497 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 2880 m 20601 2940 l 20497 2999 l 20393 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 2940 m 20497 3000 l 20393 3059 l 20289 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 3000 m 20393 3060 l 20289 3119 l 20185 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 3060 m 20289 3120 l 20185 3179 l 20081 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20081 3120 m 20185 3180 l 20081 3239 l 19977 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2280 m 21847 2340 l 21743 2399 l 21639 2339 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2340 m 21743 2400 l 21639 2459 l 21535 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2400 m 21639 2460 l 21535 2519 l 21431 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2460 m 21535 2520 l 21431 2579 l 21327 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2520 m 21431 2580 l 21327 2639 l 21223 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2580 m 21327 2640 l 21223 2699 l 21120 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2640 m 21223 2700 l 21120 2759 l 21017 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2700 m 21120 2760 l 21017 2819 l 20913 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2760 m 21017 2820 l 20913 2879 l 20809 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2820 m 20913 2880 l 20809 2939 l 20705 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 2880 m 20809 2940 l 20705 2999 l 20601 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 2940 m 20705 3000 l 20601 3059 l 20497 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 3000 m 20601 3060 l 20497 3119 l 20393 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 3060 m 20497 3120 l 20393 3179 l 20289 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 3120 m 20393 3180 l 20289 3239 l 20185 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20185 3180 m 20289 3240 l 20185 3299 l 20081 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2340 m 21951 2400 l 21847 2459 l 21743 2399 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2400 m 21847 2460 l 21743 2519 l 21639 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2460 m 21743 2520 l 21639 2579 l 21535 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2520 m 21639 2580 l 21535 2639 l 21431 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2580 m 21535 2640 l 21431 2699 l 21327 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2640 m 21431 2700 l 21327 2759 l 21223 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2700 m 21327 2760 l 21223 2819 l 21120 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2760 m 21223 2820 l 21120 2879 l 21017 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2820 m 21120 2880 l 21017 2939 l 20913 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 2880 m 21017 2940 l 20913 2999 l 20809 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 2940 m 20913 3000 l 20809 3059 l 20705 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 3000 m 20809 3060 l 20705 3119 l 20601 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 3060 m 20705 3120 l 20601 3179 l 20497 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 3120 m 20601 3180 l 20497 3239 l 20393 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 3180 m 20497 3240 l 20393 3299 l 20289 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20289 3240 m 20393 3300 l 20289 3359 l 20185 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2400 m 22055 2460 l 21951 2519 l 21847 2459 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2460 m 21951 2520 l 21847 2579 l 21743 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2520 m 21847 2580 l 21743 2639 l 21639 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2580 m 21743 2640 l 21639 2699 l 21535 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2640 m 21639 2700 l 21535 2759 l 21431 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2700 m 21535 2760 l 21431 2819 l 21327 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2760 m 21431 2820 l 21327 2879 l 21223 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2820 m 21327 2880 l 21223 2939 l 21120 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 2880 m 21223 2940 l 21120 2999 l 21017 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 2940 m 21120 3000 l 21017 3059 l 20913 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3000 m 21017 3060 l 20913 3119 l 20809 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 3060 m 20913 3120 l 20809 3179 l 20705 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 3120 m 20809 3180 l 20705 3239 l 20601 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 3180 m 20705 3240 l 20601 3299 l 20497 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 3240 m 20601 3300 l 20497 3359 l 20393 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20393 3300 m 20497 3360 l 20393 3419 l 20289 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2460 m 22159 2520 l 22055 2579 l 21951 2519 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2520 m 22055 2580 l 21951 2639 l 21847 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2580 m 21951 2640 l 21847 2699 l 21743 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2640 m 21847 2700 l 21743 2759 l 21639 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2700 m 21743 2760 l 21639 2819 l 21535 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2760 m 21639 2820 l 21535 2879 l 21431 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2820 m 21535 2880 l 21431 2939 l 21327 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 2880 m 21431 2940 l 21327 2999 l 21223 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 2940 m 21327 3000 l 21223 3059 l 21120 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3000 m 21223 3060 l 21120 3119 l 21017 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3060 m 21120 3120 l 21017 3179 l 20913 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3120 m 21017 3180 l 20913 3239 l 20809 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 3180 m 20913 3240 l 20809 3299 l 20705 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 3240 m 20809 3300 l 20705 3359 l 20601 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 3300 m 20705 3360 l 20601 3419 l 20497 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20497 3360 m 20601 3420 l 20497 3479 l 20393 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2520 m 22263 2580 l 22159 2639 l 22055 2579 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2580 m 22159 2640 l 22055 2699 l 21951 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2640 m 22055 2700 l 21951 2759 l 21847 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2700 m 21951 2760 l 21847 2819 l 21743 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2760 m 21847 2820 l 21743 2879 l 21639 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2820 m 21743 2880 l 21639 2939 l 21535 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 2880 m 21639 2940 l 21535 2999 l 21431 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 2940 m 21535 3000 l 21431 3059 l 21327 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3000 m 21431 3060 l 21327 3119 l 21223 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3060 m 21327 3120 l 21223 3179 l 21120 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3120 m 21223 3180 l 21120 3239 l 21017 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3180 m 21120 3240 l 21017 3299 l 20913 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3240 m 21017 3300 l 20913 3359 l 20809 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 3300 m 20913 3360 l 20809 3419 l 20705 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 3360 m 20809 3420 l 20705 3479 l 20601 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20601 3420 m 20705 3480 l 20601 3539 l 20497 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2580 m 22367 2640 l 22263 2699 l 22159 2639 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2640 m 22263 2700 l 22159 2759 l 22055 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2700 m 22159 2760 l 22055 2819 l 21951 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2760 m 22055 2820 l 21951 2879 l 21847 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2820 m 21951 2880 l 21847 2939 l 21743 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 2880 m 21847 2940 l 21743 2999 l 21639 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 2940 m 21743 3000 l 21639 3059 l 21535 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 3000 m 21639 3060 l 21535 3119 l 21431 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 3060 m 21535 3120 l 21431 3179 l 21327 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3120 m 21431 3180 l 21327 3239 l 21223 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3180 m 21327 3240 l 21223 3299 l 21120 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3240 m 21223 3300 l 21120 3359 l 21017 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3300 m 21120 3360 l 21017 3419 l 20913 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3360 m 21017 3420 l 20913 3479 l 20809 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 3420 m 20913 3480 l 20809 3539 l 20705 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20705 3480 m 20809 3540 l 20705 3599 l 20601 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2640 m 22470 2700 l 22367 2759 l 22263 2699 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2700 m 22367 2760 l 22263 2819 l 22159 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2760 m 22263 2820 l 22159 2879 l 22055 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2820 m 22159 2880 l 22055 2939 l 21951 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 2880 m 22055 2940 l 21951 2999 l 21847 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 2940 m 21951 3000 l 21847 3059 l 21743 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 3000 m 21847 3060 l 21743 3119 l 21639 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 3060 m 21743 3120 l 21639 3179 l 21535 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 3120 m 21639 3180 l 21535 3239 l 21431 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 3180 m 21535 3240 l 21431 3299 l 21327 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3240 m 21431 3300 l 21327 3359 l 21223 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3300 m 21327 3360 l 21223 3419 l 21120 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3360 m 21223 3420 l 21120 3479 l 21017 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3420 m 21120 3480 l 21017 3539 l 20913 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3480 m 21017 3540 l 20913 3599 l 20809 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20809 3540 m 20913 3600 l 20809 3659 l 20705 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2700 m 22574 2760 l 22470 2819 l 22367 2759 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2760 m 22470 2820 l 22367 2879 l 22263 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2820 m 22367 2880 l 22263 2939 l 22159 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 2880 m 22263 2940 l 22159 2999 l 22055 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 2940 m 22159 3000 l 22055 3059 l 21951 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 3000 m 22055 3060 l 21951 3119 l 21847 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 3060 m 21951 3120 l 21847 3179 l 21743 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 3120 m 21847 3180 l 21743 3239 l 21639 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 3180 m 21743 3240 l 21639 3299 l 21535 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 3240 m 21639 3300 l 21535 3359 l 21431 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 3300 m 21535 3360 l 21431 3419 l 21327 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3360 m 21431 3420 l 21327 3479 l 21223 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3420 m 21327 3480 l 21223 3539 l 21120 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3480 m 21223 3540 l 21120 3599 l 21017 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3540 m 21120 3600 l 21017 3659 l 20913 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 20913 3600 m 21017 3660 l 20913 3719 l 20809 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2760 m 22678 2820 l 22574 2879 l 22470 2819 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2820 m 22574 2880 l 22470 2939 l 22367 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 2880 m 22470 2940 l 22367 2999 l 22263 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 2940 m 22367 3000 l 22263 3059 l 22159 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 3000 m 22263 3060 l 22159 3119 l 22055 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 3060 m 22159 3120 l 22055 3179 l 21951 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 3120 m 22055 3180 l 21951 3239 l 21847 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 3180 m 21951 3240 l 21847 3299 l 21743 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 3240 m 21847 3300 l 21743 3359 l 21639 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 3300 m 21743 3360 l 21639 3419 l 21535 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 3360 m 21639 3420 l 21535 3479 l 21431 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 3420 m 21535 3480 l 21431 3539 l 21327 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3480 m 21431 3540 l 21327 3599 l 21223 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3540 m 21327 3600 l 21223 3659 l 21120 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3600 m 21223 3660 l 21120 3719 l 21017 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21017 3660 m 21120 3720 l 21017 3779 l 20913 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22678 2820 m 22782 2880 l 22678 2939 l 22574 2879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22574 2880 m 22678 2940 l 22574 2999 l 22470 2939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22470 2940 m 22574 3000 l 22470 3059 l 22367 2999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22367 3000 m 22470 3060 l 22367 3119 l 22263 3059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22263 3060 m 22367 3120 l 22263 3179 l 22159 3119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22159 3120 m 22263 3180 l 22159 3239 l 22055 3179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 22055 3180 m 22159 3240 l 22055 3299 l 21951 3239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21951 3240 m 22055 3300 l 21951 3359 l 21847 3299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21847 3300 m 21951 3360 l 21847 3419 l 21743 3359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21743 3360 m 21847 3420 l 21743 3479 l 21639 3419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21639 3420 m 21743 3480 l 21639 3539 l 21535 3479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21535 3480 m 21639 3540 l 21535 3599 l 21431 3539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21431 3540 m 21535 3600 l 21431 3659 l 21327 3599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21327 3600 m 21431 3660 l 21327 3719 l 21223 3659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21223 3660 m 21327 3720 l 21223 3779 l 21120 3719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 21120 3720 m 21223 3780 l 21120 3839 l 21017 3779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5820 m 1920 5879 l 1920 5760 l 2023 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 2023 5700 m 1920 5760 l 1920 5640 l 2023 5581 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1920 5520 m 1817 5580 l 1817 5460 l 1920 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5400 m 1817 5460 l 1817 5340 l 1920 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5280 m 1817 5340 l 1817 5220 l 1920 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5160 m 1817 5220 l 1817 5100 l 1920 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5040 m 1817 5100 l 1817 4980 l 1920 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4920 m 1817 4980 l 1817 4860 l 1920 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4800 m 1817 4860 l 1817 4740 l 1920 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4680 m 1817 4740 l 1817 4620 l 1920 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4560 m 1817 4620 l 1817 4500 l 1920 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4440 m 1817 4500 l 1817 4380 l 1920 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4320 m 1817 4380 l 1817 4260 l 1920 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4200 m 1817 4260 l 1817 4140 l 1920 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4080 m 1817 4140 l 1817 4020 l 1920 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3960 m 1817 4020 l 1817 3900 l 1920 3841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5880 m 1817 5939 l 1817 5819 l 1920 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1920 5760 m 1817 5819 l 1817 5700 l 1920 5641 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1817 5580 m 1713 5640 l 1713 5520 l 1817 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5460 m 1713 5520 l 1713 5400 l 1817 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5340 m 1713 5400 l 1713 5280 l 1817 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5220 m 1713 5280 l 1713 5160 l 1817 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5100 m 1713 5160 l 1713 5040 l 1817 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4980 m 1713 5040 l 1713 4920 l 1817 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4860 m 1713 4920 l 1713 4800 l 1817 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4740 m 1713 4800 l 1713 4680 l 1817 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4620 m 1713 4680 l 1713 4560 l 1817 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4500 m 1713 4560 l 1713 4440 l 1817 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4380 m 1713 4440 l 1713 4320 l 1817 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4260 m 1713 4320 l 1713 4200 l 1817 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4140 m 1713 4200 l 1713 4080 l 1817 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 4020 m 1713 4080 l 1713 3960 l 1817 3901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5940 m 1713 5999 l 1713 5879 l 1817 5820 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1817 5820 m 1713 5879 l 1713 5760 l 1817 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1713 5640 m 1609 5700 l 1609 5580 l 1713 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 5520 m 1609 5580 l 1609 5460 l 1713 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 5400 m 1609 5460 l 1609 5340 l 1713 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 5280 m 1609 5340 l 1609 5220 l 1713 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 5160 m 1609 5220 l 1609 5100 l 1713 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 5040 m 1609 5100 l 1609 4980 l 1713 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4920 m 1609 4980 l 1609 4860 l 1713 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4800 m 1609 4860 l 1609 4740 l 1713 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4680 m 1609 4740 l 1609 4620 l 1713 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4560 m 1609 4620 l 1609 4500 l 1713 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4440 m 1609 4500 l 1609 4380 l 1713 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4320 m 1609 4380 l 1609 4260 l 1713 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4200 m 1609 4260 l 1609 4140 l 1713 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 4080 m 1609 4140 l 1609 4020 l 1713 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6000 m 1609 6059 l 1609 5939 l 1713 5880 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1713 5880 m 1609 5939 l 1609 5819 l 1713 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1609 5700 m 1505 5760 l 1505 5640 l 1609 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 5580 m 1505 5640 l 1505 5520 l 1609 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 5460 m 1505 5520 l 1505 5400 l 1609 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 5340 m 1505 5400 l 1505 5280 l 1609 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 5220 m 1505 5280 l 1505 5160 l 1609 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 5100 m 1505 5160 l 1505 5040 l 1609 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4980 m 1505 5040 l 1505 4920 l 1609 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4860 m 1505 4920 l 1505 4800 l 1609 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4740 m 1505 4800 l 1505 4680 l 1609 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4620 m 1505 4680 l 1505 4560 l 1609 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4500 m 1505 4560 l 1505 4440 l 1609 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4380 m 1505 4440 l 1505 4320 l 1609 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4260 m 1505 4320 l 1505 4200 l 1609 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 4140 m 1505 4200 l 1505 4080 l 1609 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6060 m 1505 6119 l 1505 5999 l 1609 5940 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1609 5940 m 1505 5999 l 1505 5879 l 1609 5820 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1505 5760 m 1401 5819 l 1401 5700 l 1505 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5640 m 1401 5700 l 1401 5580 l 1505 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5520 m 1401 5580 l 1401 5460 l 1505 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5400 m 1401 5460 l 1401 5340 l 1505 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5280 m 1401 5340 l 1401 5220 l 1505 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5160 m 1401 5220 l 1401 5100 l 1505 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 5040 m 1401 5100 l 1401 4980 l 1505 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4920 m 1401 4980 l 1401 4860 l 1505 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4800 m 1401 4860 l 1401 4740 l 1505 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4680 m 1401 4740 l 1401 4620 l 1505 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4560 m 1401 4620 l 1401 4500 l 1505 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4440 m 1401 4500 l 1401 4380 l 1505 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4320 m 1401 4380 l 1401 4260 l 1505 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 4200 m 1401 4260 l 1401 4140 l 1505 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6120 m 1401 6179 l 1401 6059 l 1505 6000 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1505 6000 m 1401 6059 l 1401 5939 l 1505 5880 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1401 5820 m 1297 5879 l 1297 5760 l 1401 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5700 m 1297 5760 l 1297 5640 l 1401 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5580 m 1297 5640 l 1297 5520 l 1401 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5460 m 1297 5520 l 1297 5400 l 1401 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5340 m 1297 5400 l 1297 5280 l 1401 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5220 m 1297 5280 l 1297 5160 l 1401 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 5100 m 1297 5160 l 1297 5040 l 1401 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4980 m 1297 5040 l 1297 4920 l 1401 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4860 m 1297 4920 l 1297 4800 l 1401 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4740 m 1297 4800 l 1297 4680 l 1401 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4620 m 1297 4680 l 1297 4560 l 1401 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4500 m 1297 4560 l 1297 4440 l 1401 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4380 m 1297 4440 l 1297 4320 l 1401 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 4260 m 1297 4320 l 1297 4200 l 1401 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6180 m 1297 6239 l 1297 6119 l 1401 6060 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1297 6000 m 1193 6059 l 1193 5939 l 1297 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5880 m 1193 5939 l 1193 5819 l 1297 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5760 m 1193 5819 l 1193 5700 l 1297 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5640 m 1193 5700 l 1193 5580 l 1297 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5520 m 1193 5580 l 1193 5460 l 1297 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5400 m 1193 5460 l 1193 5340 l 1297 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5280 m 1193 5340 l 1193 5220 l 1297 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5160 m 1193 5220 l 1193 5100 l 1297 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 5040 m 1193 5100 l 1193 4980 l 1297 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4920 m 1193 4980 l 1193 4860 l 1297 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4800 m 1193 4860 l 1193 4740 l 1297 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4680 m 1193 4740 l 1193 4620 l 1297 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4560 m 1193 4620 l 1193 4500 l 1297 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4440 m 1193 4500 l 1193 4380 l 1297 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 4320 m 1193 4380 l 1193 4260 l 1297 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6240 m 1193 6299 l 1193 6179 l 1297 6120 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1193 6060 m 1089 6119 l 1089 5999 l 1193 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5940 m 1089 5999 l 1089 5879 l 1193 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5820 m 1089 5879 l 1089 5760 l 1193 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5700 m 1089 5760 l 1089 5640 l 1193 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5580 m 1089 5640 l 1089 5520 l 1193 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5460 m 1089 5520 l 1089 5400 l 1193 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5340 m 1089 5400 l 1089 5280 l 1193 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5220 m 1089 5280 l 1089 5160 l 1193 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 5100 m 1089 5160 l 1089 5040 l 1193 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4980 m 1089 5040 l 1089 4920 l 1193 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4860 m 1089 4920 l 1089 4800 l 1193 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4740 m 1089 4800 l 1089 4680 l 1193 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4620 m 1089 4680 l 1089 4560 l 1193 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4500 m 1089 4560 l 1089 4440 l 1193 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 4380 m 1089 4440 l 1089 4320 l 1193 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6300 m 1089 6359 l 1089 6239 l 1193 6180 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 1089 6120 m 985 6179 l 985 6059 l 1089 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6000 m 985 6059 l 985 5939 l 1089 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5880 m 985 5939 l 985 5819 l 1089 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5760 m 985 5819 l 985 5700 l 1089 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5640 m 985 5700 l 985 5580 l 1089 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5520 m 985 5580 l 985 5460 l 1089 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5400 m 985 5460 l 985 5340 l 1089 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5280 m 985 5340 l 985 5220 l 1089 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5160 m 985 5220 l 985 5100 l 1089 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 5040 m 985 5100 l 985 4980 l 1089 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 4920 m 985 4980 l 985 4860 l 1089 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 4800 m 985 4860 l 985 4740 l 1089 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 4680 m 985 4740 l 985 4620 l 1089 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 4560 m 985 4620 l 985 4500 l 1089 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 4440 m 985 4500 l 985 4380 l 1089 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6300 m 881 6359 l 881 6239 l 985 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6180 m 881 6239 l 881 6119 l 985 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6060 m 881 6119 l 881 5999 l 985 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5940 m 881 5999 l 881 5879 l 985 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5820 m 881 5879 l 881 5760 l 985 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5700 m 881 5760 l 881 5640 l 985 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5580 m 881 5640 l 881 5520 l 985 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5460 m 881 5520 l 881 5400 l 985 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5340 m 881 5400 l 881 5280 l 985 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5220 m 881 5280 l 881 5160 l 985 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 5100 m 881 5160 l 881 5040 l 985 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 4980 m 881 5040 l 881 4920 l 985 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 4860 m 881 4920 l 881 4800 l 985 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 4740 m 881 4800 l 881 4680 l 985 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 4620 m 881 4680 l 881 4560 l 985 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 4500 m 881 4560 l 881 4440 l 985 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6360 m 777 6419 l 777 6299 l 881 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6240 m 777 6299 l 777 6179 l 881 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6120 m 777 6179 l 777 6059 l 881 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6000 m 777 6059 l 777 5939 l 881 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5880 m 777 5939 l 777 5819 l 881 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5760 m 777 5819 l 777 5700 l 881 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5640 m 777 5700 l 777 5580 l 881 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5520 m 777 5580 l 777 5460 l 881 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5400 m 777 5460 l 777 5340 l 881 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5280 m 777 5340 l 777 5220 l 881 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5160 m 777 5220 l 777 5100 l 881 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 5040 m 777 5100 l 777 4980 l 881 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 4920 m 777 4980 l 777 4860 l 881 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 4800 m 777 4860 l 777 4740 l 881 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 4680 m 777 4740 l 777 4620 l 881 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 4560 m 777 4620 l 777 4500 l 881 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6420 m 673 6479 l 673 6359 l 777 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6300 m 673 6359 l 673 6239 l 777 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6180 m 673 6239 l 673 6119 l 777 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6060 m 673 6119 l 673 5999 l 777 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5940 m 673 5999 l 673 5879 l 777 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5820 m 673 5879 l 673 5760 l 777 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5700 m 673 5760 l 673 5640 l 777 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5580 m 673 5640 l 673 5520 l 777 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5460 m 673 5520 l 673 5400 l 777 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5340 m 673 5400 l 673 5280 l 777 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5220 m 673 5280 l 673 5160 l 777 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 5100 m 673 5160 l 673 5040 l 777 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 4980 m 673 5040 l 673 4920 l 777 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 4860 m 673 4920 l 673 4800 l 777 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 4740 m 673 4800 l 673 4680 l 777 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 4620 m 673 4680 l 673 4560 l 777 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6480 m 570 6539 l 570 6419 l 673 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6360 m 570 6419 l 570 6299 l 673 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6240 m 570 6299 l 570 6179 l 673 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6120 m 570 6179 l 570 6059 l 673 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6000 m 570 6059 l 570 5939 l 673 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5880 m 570 5939 l 570 5819 l 673 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5760 m 570 5819 l 570 5700 l 673 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5640 m 570 5700 l 570 5580 l 673 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5520 m 570 5580 l 570 5460 l 673 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5400 m 570 5460 l 570 5340 l 673 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5280 m 570 5340 l 570 5220 l 673 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5160 m 570 5220 l 570 5100 l 673 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 5040 m 570 5100 l 570 4980 l 673 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 4920 m 570 4980 l 570 4860 l 673 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 4800 m 570 4860 l 570 4740 l 673 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 4680 m 570 4740 l 570 4620 l 673 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6540 m 466 6599 l 466 6479 l 570 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6420 m 466 6479 l 466 6359 l 570 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6300 m 466 6359 l 466 6239 l 570 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6180 m 466 6239 l 466 6119 l 570 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6060 m 466 6119 l 466 5999 l 570 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5940 m 466 5999 l 466 5879 l 570 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5820 m 466 5879 l 466 5760 l 570 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5700 m 466 5760 l 466 5640 l 570 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5580 m 466 5640 l 466 5520 l 570 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5460 m 466 5520 l 466 5400 l 570 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5340 m 466 5400 l 466 5280 l 570 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5220 m 466 5280 l 466 5160 l 570 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 5100 m 466 5160 l 466 5040 l 570 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 4980 m 466 5040 l 466 4920 l 570 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 4860 m 466 4920 l 466 4800 l 570 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 4740 m 466 4800 l 466 4680 l 570 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6600 m 362 6659 l 362 6539 l 466 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6480 m 362 6539 l 362 6419 l 466 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6360 m 362 6419 l 362 6299 l 466 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6240 m 362 6299 l 362 6179 l 466 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6120 m 362 6179 l 362 6059 l 466 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6000 m 362 6059 l 362 5939 l 466 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5880 m 362 5939 l 362 5819 l 466 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5760 m 362 5819 l 362 5700 l 466 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5640 m 362 5700 l 362 5580 l 466 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5520 m 362 5580 l 362 5460 l 466 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5400 m 362 5460 l 362 5340 l 466 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5280 m 362 5340 l 362 5220 l 466 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5160 m 362 5220 l 362 5100 l 466 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 5040 m 362 5100 l 362 4980 l 466 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 4920 m 362 4980 l 362 4860 l 466 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 4800 m 362 4860 l 362 4740 l 466 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6660 m 258 6719 l 258 6599 l 362 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6540 m 258 6599 l 258 6479 l 362 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6420 m 258 6479 l 258 6359 l 362 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6300 m 258 6359 l 258 6239 l 362 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6180 m 258 6239 l 258 6119 l 362 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6060 m 258 6119 l 258 5999 l 362 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5940 m 258 5999 l 258 5879 l 362 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5820 m 258 5879 l 258 5760 l 362 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5700 m 258 5760 l 258 5640 l 362 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5580 m 258 5640 l 258 5520 l 362 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5460 m 258 5520 l 258 5400 l 362 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5340 m 258 5400 l 258 5280 l 362 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5220 m 258 5280 l 258 5160 l 362 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 5100 m 258 5160 l 258 5040 l 362 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 4980 m 258 5040 l 258 4920 l 362 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 4860 m 258 4920 l 258 4800 l 362 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6300 m 985 6180 l 1089 6240 l 1089 6360 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1297 6000 m 1297 5880 l 1401 5940 l 1401 6060 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 1920 5520 m 1920 5400 l 2023 5461 l 2023 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5400 m 1920 5280 l 2023 5341 l 2023 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5280 m 1920 5160 l 2023 5221 l 2023 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5160 m 1920 5040 l 2023 5101 l 2023 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5040 m 1920 4920 l 2023 4981 l 2023 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4920 m 1920 4800 l 2023 4861 l 2023 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4800 m 1920 4680 l 2023 4741 l 2023 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4680 m 1920 4560 l 2023 4621 l 2023 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4560 m 1920 4440 l 2023 4501 l 2023 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4440 m 1920 4320 l 2023 4381 l 2023 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4320 m 1920 4200 l 2023 4261 l 2023 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4200 m 1920 4080 l 2023 4141 l 2023 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 4080 m 1920 3960 l 2023 4021 l 2023 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 3960 m 1920 3840 l 2023 3901 l 2023 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5820 m 2023 5700 l 2127 5760 l 2127 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5700 m 2023 5580 l 2127 5641 l 2127 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5580 m 2023 5460 l 2127 5521 l 2127 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5460 m 2023 5340 l 2127 5401 l 2127 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5340 m 2023 5220 l 2127 5281 l 2127 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5220 m 2023 5100 l 2127 5161 l 2127 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5100 m 2023 4980 l 2127 5041 l 2127 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4980 m 2023 4860 l 2127 4921 l 2127 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4860 m 2023 4740 l 2127 4801 l 2127 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4740 m 2023 4620 l 2127 4681 l 2127 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4620 m 2023 4500 l 2127 4561 l 2127 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4500 m 2023 4380 l 2127 4441 l 2127 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4380 m 2023 4260 l 2127 4321 l 2127 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4260 m 2023 4140 l 2127 4201 l 2127 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4140 m 2023 4020 l 2127 4081 l 2127 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 4020 m 2023 3900 l 2127 3961 l 2127 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5880 m 2127 5760 l 2231 5820 l 2231 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5760 m 2127 5640 l 2231 5701 l 2231 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5640 m 2127 5520 l 2231 5581 l 2231 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5520 m 2127 5400 l 2231 5461 l 2231 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5400 m 2127 5280 l 2231 5341 l 2231 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5280 m 2127 5160 l 2231 5221 l 2231 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5160 m 2127 5040 l 2231 5101 l 2231 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5040 m 2127 4920 l 2231 4981 l 2231 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4920 m 2127 4800 l 2231 4861 l 2231 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4800 m 2127 4680 l 2231 4741 l 2231 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4680 m 2127 4560 l 2231 4621 l 2231 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4560 m 2127 4440 l 2231 4501 l 2231 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4440 m 2127 4320 l 2231 4381 l 2231 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4320 m 2127 4200 l 2231 4261 l 2231 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4200 m 2127 4080 l 2231 4141 l 2231 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 4080 m 2127 3960 l 2231 4021 l 2231 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5940 m 2231 5820 l 2335 5880 l 2335 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5820 m 2231 5700 l 2335 5760 l 2335 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5700 m 2231 5580 l 2335 5641 l 2335 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5580 m 2231 5460 l 2335 5521 l 2335 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5460 m 2231 5340 l 2335 5401 l 2335 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5340 m 2231 5220 l 2335 5281 l 2335 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5220 m 2231 5100 l 2335 5161 l 2335 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5100 m 2231 4980 l 2335 5041 l 2335 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4980 m 2231 4860 l 2335 4921 l 2335 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4860 m 2231 4740 l 2335 4801 l 2335 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4740 m 2231 4620 l 2335 4681 l 2335 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4620 m 2231 4500 l 2335 4561 l 2335 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4500 m 2231 4380 l 2335 4441 l 2335 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4380 m 2231 4260 l 2335 4321 l 2335 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4260 m 2231 4140 l 2335 4201 l 2335 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 4140 m 2231 4020 l 2335 4081 l 2335 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6000 m 2335 5880 l 2439 5940 l 2439 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5880 m 2335 5760 l 2439 5820 l 2439 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5760 m 2335 5640 l 2439 5701 l 2439 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5640 m 2335 5520 l 2439 5581 l 2439 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5520 m 2335 5400 l 2439 5461 l 2439 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5400 m 2335 5280 l 2439 5341 l 2439 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5280 m 2335 5160 l 2439 5221 l 2439 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5160 m 2335 5040 l 2439 5101 l 2439 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 5040 m 2335 4920 l 2439 4981 l 2439 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4920 m 2335 4800 l 2439 4861 l 2439 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4800 m 2335 4680 l 2439 4741 l 2439 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4680 m 2335 4560 l 2439 4621 l 2439 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4560 m 2335 4440 l 2439 4501 l 2439 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4440 m 2335 4320 l 2439 4381 l 2439 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4320 m 2335 4200 l 2439 4261 l 2439 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 4200 m 2335 4080 l 2439 4141 l 2439 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6060 m 2439 5940 l 2543 6000 l 2543 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5940 m 2439 5820 l 2543 5880 l 2543 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5820 m 2439 5700 l 2543 5760 l 2543 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5700 m 2439 5580 l 2543 5641 l 2543 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5580 m 2439 5460 l 2543 5521 l 2543 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5460 m 2439 5340 l 2543 5401 l 2543 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5340 m 2439 5220 l 2543 5281 l 2543 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5220 m 2439 5100 l 2543 5161 l 2543 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 5100 m 2439 4980 l 2543 5041 l 2543 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4980 m 2439 4860 l 2543 4921 l 2543 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4860 m 2439 4740 l 2543 4801 l 2543 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4740 m 2439 4620 l 2543 4681 l 2543 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4620 m 2439 4500 l 2543 4561 l 2543 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4500 m 2439 4380 l 2543 4441 l 2543 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4380 m 2439 4260 l 2543 4321 l 2543 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 4260 m 2439 4140 l 2543 4201 l 2543 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6120 m 2543 6000 l 2647 6060 l 2647 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6000 m 2543 5880 l 2647 5940 l 2647 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5880 m 2543 5760 l 2647 5820 l 2647 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5760 m 2543 5640 l 2647 5701 l 2647 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5640 m 2543 5520 l 2647 5581 l 2647 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5520 m 2543 5400 l 2647 5461 l 2647 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5400 m 2543 5280 l 2647 5341 l 2647 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5280 m 2543 5160 l 2647 5221 l 2647 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5160 m 2543 5040 l 2647 5101 l 2647 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 5040 m 2543 4920 l 2647 4981 l 2647 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4920 m 2543 4800 l 2647 4861 l 2647 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4800 m 2543 4680 l 2647 4741 l 2647 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4680 m 2543 4560 l 2647 4621 l 2647 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4560 m 2543 4440 l 2647 4501 l 2647 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4440 m 2543 4320 l 2647 4381 l 2647 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 4320 m 2543 4200 l 2647 4261 l 2647 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6180 m 2647 6060 l 2751 6120 l 2751 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6060 m 2647 5940 l 2751 6000 l 2751 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5940 m 2647 5820 l 2751 5880 l 2751 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5820 m 2647 5700 l 2751 5760 l 2751 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5700 m 2647 5580 l 2751 5641 l 2751 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5580 m 2647 5460 l 2751 5521 l 2751 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5460 m 2647 5340 l 2751 5401 l 2751 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5340 m 2647 5220 l 2751 5281 l 2751 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5220 m 2647 5100 l 2751 5161 l 2751 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 5100 m 2647 4980 l 2751 5041 l 2751 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4980 m 2647 4860 l 2751 4921 l 2751 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4860 m 2647 4740 l 2751 4801 l 2751 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4740 m 2647 4620 l 2751 4681 l 2751 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4620 m 2647 4500 l 2751 4561 l 2751 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4500 m 2647 4380 l 2751 4441 l 2751 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 4380 m 2647 4260 l 2751 4321 l 2751 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6240 m 2751 6120 l 2855 6180 l 2855 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6120 m 2751 6000 l 2855 6060 l 2855 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6000 m 2751 5880 l 2855 5940 l 2855 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5880 m 2751 5760 l 2855 5820 l 2855 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5760 m 2751 5640 l 2855 5701 l 2855 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5640 m 2751 5520 l 2855 5581 l 2855 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5520 m 2751 5400 l 2855 5461 l 2855 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5400 m 2751 5280 l 2855 5341 l 2855 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5280 m 2751 5160 l 2855 5221 l 2855 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5160 m 2751 5040 l 2855 5101 l 2855 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 5040 m 2751 4920 l 2855 4981 l 2855 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 4920 m 2751 4800 l 2855 4861 l 2855 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 4800 m 2751 4680 l 2855 4741 l 2855 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 4680 m 2751 4560 l 2855 4621 l 2855 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 4560 m 2751 4440 l 2855 4501 l 2855 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 4440 m 2751 4320 l 2855 4381 l 2855 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6300 m 2855 6180 l 2959 6240 l 2959 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6180 m 2855 6060 l 2959 6120 l 2959 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6060 m 2855 5940 l 2959 6000 l 2959 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5940 m 2855 5820 l 2959 5880 l 2959 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5820 m 2855 5700 l 2959 5760 l 2959 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5700 m 2855 5580 l 2959 5641 l 2959 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5580 m 2855 5460 l 2959 5521 l 2959 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5460 m 2855 5340 l 2959 5401 l 2959 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5340 m 2855 5220 l 2959 5281 l 2959 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5220 m 2855 5100 l 2959 5161 l 2959 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 5100 m 2855 4980 l 2959 5041 l 2959 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 4980 m 2855 4860 l 2959 4921 l 2959 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 4860 m 2855 4740 l 2959 4801 l 2959 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 4740 m 2855 4620 l 2959 4681 l 2959 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 4620 m 2855 4500 l 2959 4561 l 2959 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 4500 m 2855 4380 l 2959 4441 l 2959 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6360 m 2959 6240 l 3063 6300 l 3063 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6240 m 2959 6120 l 3063 6180 l 3063 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6120 m 2959 6000 l 3063 6060 l 3063 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6000 m 2959 5880 l 3063 5940 l 3063 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5880 m 2959 5760 l 3063 5820 l 3063 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5760 m 2959 5640 l 3063 5701 l 3063 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5640 m 2959 5520 l 3063 5581 l 3063 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5520 m 2959 5400 l 3063 5461 l 3063 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5400 m 2959 5280 l 3063 5341 l 3063 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5280 m 2959 5160 l 3063 5221 l 3063 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5160 m 2959 5040 l 3063 5101 l 3063 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 5040 m 2959 4920 l 3063 4981 l 3063 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 4920 m 2959 4800 l 3063 4861 l 3063 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 4800 m 2959 4680 l 3063 4741 l 3063 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 4680 m 2959 4560 l 3063 4621 l 3063 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 4560 m 2959 4440 l 3063 4501 l 3063 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6420 m 3063 6300 l 3167 6360 l 3167 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6300 m 3063 6180 l 3167 6240 l 3167 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6180 m 3063 6060 l 3167 6120 l 3167 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6060 m 3063 5940 l 3167 6000 l 3167 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5940 m 3063 5820 l 3167 5880 l 3167 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5820 m 3063 5700 l 3167 5760 l 3167 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5700 m 3063 5580 l 3167 5641 l 3167 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5580 m 3063 5460 l 3167 5521 l 3167 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5460 m 3063 5340 l 3167 5401 l 3167 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5340 m 3063 5220 l 3167 5281 l 3167 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5220 m 3063 5100 l 3167 5161 l 3167 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 5100 m 3063 4980 l 3167 5041 l 3167 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 4980 m 3063 4860 l 3167 4921 l 3167 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 4860 m 3063 4740 l 3167 4801 l 3167 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 4740 m 3063 4620 l 3167 4681 l 3167 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 4620 m 3063 4500 l 3167 4561 l 3167 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6480 m 3167 6360 l 3270 6420 l 3270 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6360 m 3167 6240 l 3270 6300 l 3270 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6240 m 3167 6120 l 3270 6180 l 3270 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6120 m 3167 6000 l 3270 6060 l 3270 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6000 m 3167 5880 l 3270 5940 l 3270 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5880 m 3167 5760 l 3270 5820 l 3270 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5760 m 3167 5640 l 3270 5701 l 3270 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5640 m 3167 5520 l 3270 5581 l 3270 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5520 m 3167 5400 l 3270 5461 l 3270 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5400 m 3167 5280 l 3270 5341 l 3270 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5280 m 3167 5160 l 3270 5221 l 3270 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5160 m 3167 5040 l 3270 5101 l 3270 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 5040 m 3167 4920 l 3270 4981 l 3270 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 4920 m 3167 4800 l 3270 4861 l 3270 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 4800 m 3167 4680 l 3270 4741 l 3270 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 4680 m 3167 4560 l 3270 4621 l 3270 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6540 m 3270 6420 l 3374 6480 l 3374 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6420 m 3270 6300 l 3374 6360 l 3374 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6300 m 3270 6180 l 3374 6240 l 3374 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6180 m 3270 6060 l 3374 6120 l 3374 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6060 m 3270 5940 l 3374 6000 l 3374 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5940 m 3270 5820 l 3374 5880 l 3374 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5820 m 3270 5700 l 3374 5760 l 3374 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5700 m 3270 5580 l 3374 5641 l 3374 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5580 m 3270 5460 l 3374 5521 l 3374 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5460 m 3270 5340 l 3374 5401 l 3374 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5340 m 3270 5220 l 3374 5281 l 3374 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5220 m 3270 5100 l 3374 5161 l 3374 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 5100 m 3270 4980 l 3374 5041 l 3374 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 4980 m 3270 4860 l 3374 4921 l 3374 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 4860 m 3270 4740 l 3374 4801 l 3374 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 4740 m 3270 4620 l 3374 4681 l 3374 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6600 m 3374 6480 l 3478 6540 l 3478 6660 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6480 m 3374 6360 l 3478 6420 l 3478 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6360 m 3374 6240 l 3478 6300 l 3478 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6240 m 3374 6120 l 3478 6180 l 3478 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6120 m 3374 6000 l 3478 6060 l 3478 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6000 m 3374 5880 l 3478 5940 l 3478 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5880 m 3374 5760 l 3478 5820 l 3478 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5760 m 3374 5640 l 3478 5701 l 3478 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5640 m 3374 5520 l 3478 5581 l 3478 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5520 m 3374 5400 l 3478 5461 l 3478 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5400 m 3374 5280 l 3478 5341 l 3478 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5280 m 3374 5160 l 3478 5221 l 3478 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5160 m 3374 5040 l 3478 5101 l 3478 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 5040 m 3374 4920 l 3478 4981 l 3478 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 4920 m 3374 4800 l 3478 4861 l 3478 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 4800 m 3374 4680 l 3478 4741 l 3478 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6660 m 3478 6540 l 3582 6600 l 3582 6720 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6540 m 3478 6420 l 3582 6480 l 3582 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6420 m 3478 6300 l 3582 6360 l 3582 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6300 m 3478 6180 l 3582 6240 l 3582 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6180 m 3478 6060 l 3582 6120 l 3582 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6060 m 3478 5940 l 3582 6000 l 3582 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5940 m 3478 5820 l 3582 5880 l 3582 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5820 m 3478 5700 l 3582 5760 l 3582 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5700 m 3478 5580 l 3582 5641 l 3582 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5580 m 3478 5460 l 3582 5521 l 3582 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5460 m 3478 5340 l 3582 5401 l 3582 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5340 m 3478 5220 l 3582 5281 l 3582 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5220 m 3478 5100 l 3582 5161 l 3582 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 5100 m 3478 4980 l 3582 5041 l 3582 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 4980 m 3478 4860 l 3582 4921 l 3582 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 4860 m 3478 4740 l 3582 4801 l 3582 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5520 m 2023 5581 l 1920 5640 l 1817 5580 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1817 5580 m 1920 5641 l 1817 5700 l 1713 5640 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1713 5640 m 1817 5701 l 1713 5760 l 1609 5700 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1609 5700 m 1713 5760 l 1609 5819 l 1505 5760 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1505 5760 m 1609 5820 l 1505 5879 l 1401 5819 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1401 5820 m 1505 5880 l 1401 5939 l 1297 5879 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1297 6000 m 1401 6060 l 1297 6119 l 1193 6059 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1193 6060 m 1297 6120 l 1193 6179 l 1089 6119 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 1089 6120 m 1193 6180 l 1089 6239 l 985 6179 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 985 6300 m 1089 6360 l 985 6419 l 881 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6360 m 985 6420 l 881 6479 l 777 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6420 m 881 6480 l 777 6539 l 673 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6480 m 777 6540 l 673 6599 l 570 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6540 m 673 6600 l 570 6659 l 466 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6600 m 570 6660 l 466 6719 l 362 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 362 6660 m 466 6720 l 362 6779 l 258 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5820 m 2127 5880 l 2023 5939 l 1920 5879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 5880 m 2023 5940 l 1920 5999 l 1817 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 5940 m 1920 6000 l 1817 6059 l 1713 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6000 m 1817 6060 l 1713 6119 l 1609 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6060 m 1713 6120 l 1609 6179 l 1505 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6120 m 1609 6180 l 1505 6239 l 1401 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6180 m 1505 6240 l 1401 6299 l 1297 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6240 m 1401 6300 l 1297 6359 l 1193 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6300 m 1297 6360 l 1193 6419 l 1089 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6360 m 1193 6420 l 1089 6479 l 985 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6420 m 1089 6480 l 985 6539 l 881 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6480 m 985 6540 l 881 6599 l 777 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6540 m 881 6600 l 777 6659 l 673 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6600 m 777 6660 l 673 6719 l 570 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6660 m 673 6720 l 570 6779 l 466 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 466 6720 m 570 6780 l 466 6839 l 362 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 5880 m 2231 5940 l 2127 5999 l 2023 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 5940 m 2127 6000 l 2023 6059 l 1920 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6000 m 2023 6060 l 1920 6119 l 1817 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6060 m 1920 6120 l 1817 6179 l 1713 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6120 m 1817 6180 l 1713 6239 l 1609 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6180 m 1713 6240 l 1609 6299 l 1505 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6240 m 1609 6300 l 1505 6359 l 1401 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6300 m 1505 6360 l 1401 6419 l 1297 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6360 m 1401 6420 l 1297 6479 l 1193 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6420 m 1297 6480 l 1193 6539 l 1089 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6480 m 1193 6540 l 1089 6599 l 985 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6540 m 1089 6600 l 985 6659 l 881 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6600 m 985 6660 l 881 6719 l 777 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6660 m 881 6720 l 777 6779 l 673 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6720 m 777 6780 l 673 6839 l 570 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 570 6780 m 673 6840 l 570 6899 l 466 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 5940 m 2335 6000 l 2231 6059 l 2127 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6000 m 2231 6060 l 2127 6119 l 2023 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6060 m 2127 6120 l 2023 6179 l 1920 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6120 m 2023 6180 l 1920 6239 l 1817 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6180 m 1920 6240 l 1817 6299 l 1713 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6240 m 1817 6300 l 1713 6359 l 1609 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6300 m 1713 6360 l 1609 6419 l 1505 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6360 m 1609 6420 l 1505 6479 l 1401 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6420 m 1505 6480 l 1401 6539 l 1297 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6480 m 1401 6540 l 1297 6599 l 1193 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6540 m 1297 6600 l 1193 6659 l 1089 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6600 m 1193 6660 l 1089 6719 l 985 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6660 m 1089 6720 l 985 6779 l 881 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6720 m 985 6780 l 881 6839 l 777 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6780 m 881 6840 l 777 6899 l 673 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 673 6840 m 777 6900 l 673 6959 l 570 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6000 m 2439 6060 l 2335 6119 l 2231 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6060 m 2335 6120 l 2231 6179 l 2127 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6120 m 2231 6180 l 2127 6239 l 2023 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6180 m 2127 6240 l 2023 6299 l 1920 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6240 m 2023 6300 l 1920 6359 l 1817 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6300 m 1920 6360 l 1817 6419 l 1713 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6360 m 1817 6420 l 1713 6479 l 1609 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6420 m 1713 6480 l 1609 6539 l 1505 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6480 m 1609 6540 l 1505 6599 l 1401 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6540 m 1505 6600 l 1401 6659 l 1297 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6600 m 1401 6660 l 1297 6719 l 1193 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6660 m 1297 6720 l 1193 6779 l 1089 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6720 m 1193 6780 l 1089 6839 l 985 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6780 m 1089 6840 l 985 6899 l 881 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6840 m 985 6900 l 881 6959 l 777 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 777 6900 m 881 6960 l 777 7019 l 673 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6060 m 2543 6120 l 2439 6179 l 2335 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6120 m 2439 6180 l 2335 6239 l 2231 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6180 m 2335 6240 l 2231 6299 l 2127 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6240 m 2231 6300 l 2127 6359 l 2023 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6300 m 2127 6360 l 2023 6419 l 1920 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6360 m 2023 6420 l 1920 6479 l 1817 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6420 m 1920 6480 l 1817 6539 l 1713 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6480 m 1817 6540 l 1713 6599 l 1609 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6540 m 1713 6600 l 1609 6659 l 1505 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6600 m 1609 6660 l 1505 6719 l 1401 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6660 m 1505 6720 l 1401 6779 l 1297 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6720 m 1401 6780 l 1297 6839 l 1193 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6780 m 1297 6840 l 1193 6899 l 1089 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6840 m 1193 6900 l 1089 6959 l 985 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 6900 m 1089 6960 l 985 7019 l 881 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 881 6960 m 985 7020 l 881 7079 l 777 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6120 m 2647 6180 l 2543 6239 l 2439 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6180 m 2543 6240 l 2439 6299 l 2335 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6240 m 2439 6300 l 2335 6359 l 2231 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6300 m 2335 6360 l 2231 6419 l 2127 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6360 m 2231 6420 l 2127 6479 l 2023 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6420 m 2127 6480 l 2023 6539 l 1920 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6480 m 2023 6540 l 1920 6599 l 1817 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6540 m 1920 6600 l 1817 6659 l 1713 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6600 m 1817 6660 l 1713 6719 l 1609 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6660 m 1713 6720 l 1609 6779 l 1505 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6720 m 1609 6780 l 1505 6839 l 1401 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6780 m 1505 6840 l 1401 6899 l 1297 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6840 m 1401 6900 l 1297 6959 l 1193 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 6900 m 1297 6960 l 1193 7019 l 1089 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 6960 m 1193 7020 l 1089 7079 l 985 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 985 7020 m 1089 7080 l 985 7139 l 881 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6180 m 2751 6240 l 2647 6299 l 2543 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6240 m 2647 6300 l 2543 6359 l 2439 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6300 m 2543 6360 l 2439 6419 l 2335 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6360 m 2439 6420 l 2335 6479 l 2231 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6420 m 2335 6480 l 2231 6539 l 2127 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6480 m 2231 6540 l 2127 6599 l 2023 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6540 m 2127 6600 l 2023 6659 l 1920 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6600 m 2023 6660 l 1920 6719 l 1817 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6660 m 1920 6720 l 1817 6779 l 1713 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6720 m 1817 6780 l 1713 6839 l 1609 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6780 m 1713 6840 l 1609 6899 l 1505 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6840 m 1609 6900 l 1505 6959 l 1401 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 6900 m 1505 6960 l 1401 7019 l 1297 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 6960 m 1401 7020 l 1297 7079 l 1193 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 7020 m 1297 7080 l 1193 7139 l 1089 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1089 7080 m 1193 7140 l 1089 7199 l 985 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6240 m 2855 6300 l 2751 6359 l 2647 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6300 m 2751 6360 l 2647 6419 l 2543 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6360 m 2647 6420 l 2543 6479 l 2439 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6420 m 2543 6480 l 2439 6539 l 2335 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6480 m 2439 6540 l 2335 6599 l 2231 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6540 m 2335 6600 l 2231 6659 l 2127 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6600 m 2231 6660 l 2127 6719 l 2023 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6660 m 2127 6720 l 2023 6779 l 1920 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6720 m 2023 6780 l 1920 6839 l 1817 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6780 m 1920 6840 l 1817 6899 l 1713 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6840 m 1817 6900 l 1713 6959 l 1609 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 6900 m 1713 6960 l 1609 7019 l 1505 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 6960 m 1609 7020 l 1505 7079 l 1401 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 7020 m 1505 7080 l 1401 7139 l 1297 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 7080 m 1401 7140 l 1297 7199 l 1193 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1193 7140 m 1297 7200 l 1193 7259 l 1089 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6300 m 2959 6360 l 2855 6419 l 2751 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6360 m 2855 6420 l 2751 6479 l 2647 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6420 m 2751 6480 l 2647 6539 l 2543 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6480 m 2647 6540 l 2543 6599 l 2439 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6540 m 2543 6600 l 2439 6659 l 2335 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6600 m 2439 6660 l 2335 6719 l 2231 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6660 m 2335 6720 l 2231 6779 l 2127 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6720 m 2231 6780 l 2127 6839 l 2023 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6780 m 2127 6840 l 2023 6899 l 1920 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6840 m 2023 6900 l 1920 6959 l 1817 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 6900 m 1920 6960 l 1817 7019 l 1713 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 6960 m 1817 7020 l 1713 7079 l 1609 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 7020 m 1713 7080 l 1609 7139 l 1505 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 7080 m 1609 7140 l 1505 7199 l 1401 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 7140 m 1505 7200 l 1401 7259 l 1297 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1297 7200 m 1401 7260 l 1297 7319 l 1193 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6360 m 3063 6420 l 2959 6479 l 2855 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6420 m 2959 6480 l 2855 6539 l 2751 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6480 m 2855 6540 l 2751 6599 l 2647 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6540 m 2751 6600 l 2647 6659 l 2543 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6600 m 2647 6660 l 2543 6719 l 2439 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6660 m 2543 6720 l 2439 6779 l 2335 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6720 m 2439 6780 l 2335 6839 l 2231 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6780 m 2335 6840 l 2231 6899 l 2127 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6840 m 2231 6900 l 2127 6959 l 2023 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 6900 m 2127 6960 l 2023 7019 l 1920 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 6960 m 2023 7020 l 1920 7079 l 1817 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 7020 m 1920 7080 l 1817 7139 l 1713 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 7080 m 1817 7140 l 1713 7199 l 1609 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 7140 m 1713 7200 l 1609 7259 l 1505 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 7200 m 1609 7260 l 1505 7319 l 1401 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1401 7260 m 1505 7320 l 1401 7379 l 1297 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6420 m 3167 6480 l 3063 6539 l 2959 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6480 m 3063 6540 l 2959 6599 l 2855 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6540 m 2959 6600 l 2855 6659 l 2751 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6600 m 2855 6660 l 2751 6719 l 2647 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6660 m 2751 6720 l 2647 6779 l 2543 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6720 m 2647 6780 l 2543 6839 l 2439 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6780 m 2543 6840 l 2439 6899 l 2335 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6840 m 2439 6900 l 2335 6959 l 2231 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 6900 m 2335 6960 l 2231 7019 l 2127 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 6960 m 2231 7020 l 2127 7079 l 2023 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 7020 m 2127 7080 l 2023 7139 l 1920 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 7080 m 2023 7140 l 1920 7199 l 1817 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 7140 m 1920 7200 l 1817 7259 l 1713 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 7200 m 1817 7260 l 1713 7319 l 1609 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 7260 m 1713 7320 l 1609 7379 l 1505 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1505 7320 m 1609 7380 l 1505 7439 l 1401 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6480 m 3270 6540 l 3167 6599 l 3063 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6540 m 3167 6600 l 3063 6659 l 2959 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6600 m 3063 6660 l 2959 6719 l 2855 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6660 m 2959 6720 l 2855 6779 l 2751 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6720 m 2855 6780 l 2751 6839 l 2647 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6780 m 2751 6840 l 2647 6899 l 2543 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6840 m 2647 6900 l 2543 6959 l 2439 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 6900 m 2543 6960 l 2439 7019 l 2335 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 6960 m 2439 7020 l 2335 7079 l 2231 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 7020 m 2335 7080 l 2231 7139 l 2127 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 7080 m 2231 7140 l 2127 7199 l 2023 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 7140 m 2127 7200 l 2023 7259 l 1920 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 7200 m 2023 7260 l 1920 7319 l 1817 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 7260 m 1920 7320 l 1817 7379 l 1713 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 7320 m 1817 7380 l 1713 7439 l 1609 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1609 7380 m 1713 7440 l 1609 7499 l 1505 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6540 m 3374 6600 l 3270 6659 l 3167 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6600 m 3270 6660 l 3167 6719 l 3063 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6660 m 3167 6720 l 3063 6779 l 2959 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6720 m 3063 6780 l 2959 6839 l 2855 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6780 m 2959 6840 l 2855 6899 l 2751 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6840 m 2855 6900 l 2751 6959 l 2647 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 6900 m 2751 6960 l 2647 7019 l 2543 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 6960 m 2647 7020 l 2543 7079 l 2439 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 7020 m 2543 7080 l 2439 7139 l 2335 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 7080 m 2439 7140 l 2335 7199 l 2231 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 7140 m 2335 7200 l 2231 7259 l 2127 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 7200 m 2231 7260 l 2127 7319 l 2023 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 7260 m 2127 7320 l 2023 7379 l 1920 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 7320 m 2023 7380 l 1920 7439 l 1817 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 7380 m 1920 7440 l 1817 7499 l 1713 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1713 7440 m 1817 7500 l 1713 7559 l 1609 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6600 m 3478 6660 l 3374 6719 l 3270 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6660 m 3374 6720 l 3270 6779 l 3167 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6720 m 3270 6780 l 3167 6839 l 3063 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6780 m 3167 6840 l 3063 6899 l 2959 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6840 m 3063 6900 l 2959 6959 l 2855 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 6900 m 2959 6960 l 2855 7019 l 2751 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 6960 m 2855 7020 l 2751 7079 l 2647 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 7020 m 2751 7080 l 2647 7139 l 2543 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 7080 m 2647 7140 l 2543 7199 l 2439 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 7140 m 2543 7200 l 2439 7259 l 2335 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 7200 m 2439 7260 l 2335 7319 l 2231 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 7260 m 2335 7320 l 2231 7379 l 2127 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 7320 m 2231 7380 l 2127 7439 l 2023 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 7380 m 2127 7440 l 2023 7499 l 1920 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 7440 m 2023 7500 l 1920 7559 l 1817 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1817 7500 m 1920 7560 l 1817 7619 l 1713 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3478 6660 m 3582 6720 l 3478 6779 l 3374 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3374 6720 m 3478 6780 l 3374 6839 l 3270 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3270 6780 m 3374 6840 l 3270 6899 l 3167 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3167 6840 m 3270 6900 l 3167 6959 l 3063 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 3063 6900 m 3167 6960 l 3063 7019 l 2959 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2959 6960 m 3063 7020 l 2959 7079 l 2855 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2855 7020 m 2959 7080 l 2855 7139 l 2751 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2751 7080 m 2855 7140 l 2751 7199 l 2647 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2647 7140 m 2751 7200 l 2647 7259 l 2543 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2543 7200 m 2647 7260 l 2543 7319 l 2439 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2439 7260 m 2543 7320 l 2439 7379 l 2335 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2335 7320 m 2439 7380 l 2335 7439 l 2231 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2231 7380 m 2335 7440 l 2231 7499 l 2127 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2127 7440 m 2231 7500 l 2127 7559 l 2023 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 2023 7500 m 2127 7560 l 2023 7619 l 1920 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 1920 7560 m 2023 7620 l 1920 7679 l 1817 7619 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5820 m 5760 5879 l 5760 5760 l 5863 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5700 m 5760 5760 l 5760 5640 l 5863 5581 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5580 m 5760 5640 l 5760 5520 l 5863 5461 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5460 m 5760 5520 l 5760 5400 l 5863 5341 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5340 m 5760 5400 l 5760 5280 l 5863 5221 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5220 m 5760 5280 l 5760 5160 l 5863 5101 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 5100 m 5760 5160 l 5760 5040 l 5863 4981 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5863 4980 m 5760 5040 l 5760 4920 l 5863 4861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 4800 m 5657 4860 l 5657 4740 l 5760 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4680 m 5657 4740 l 5657 4620 l 5760 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4560 m 5657 4620 l 5657 4500 l 5760 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4440 m 5657 4500 l 5657 4380 l 5760 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4320 m 5657 4380 l 5657 4260 l 5760 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4200 m 5657 4260 l 5657 4140 l 5760 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4080 m 5657 4140 l 5657 4020 l 5760 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3960 m 5657 4020 l 5657 3900 l 5760 3841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 5880 m 5657 5939 l 5657 5819 l 5760 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 5760 m 5657 5819 l 5657 5700 l 5760 5641 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 5640 m 5657 5700 l 5657 5580 l 5760 5521 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5760 5520 m 5657 5580 l 5657 5460 l 5760 5401 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5657 5340 m 5553 5400 l 5553 5280 l 5657 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 5220 m 5553 5280 l 5553 5160 l 5657 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 5100 m 5553 5160 l 5553 5040 l 5657 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4980 m 5553 5040 l 5553 4920 l 5657 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4860 m 5553 4920 l 5553 4800 l 5657 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4740 m 5553 4800 l 5553 4680 l 5657 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4620 m 5553 4680 l 5553 4560 l 5657 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4500 m 5553 4560 l 5553 4440 l 5657 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4380 m 5553 4440 l 5553 4320 l 5657 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4260 m 5553 4320 l 5553 4200 l 5657 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4140 m 5553 4200 l 5553 4080 l 5657 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 4020 m 5553 4080 l 5553 3960 l 5657 3901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 5940 m 5553 5999 l 5553 5879 l 5657 5820 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5657 5820 m 5553 5879 l 5553 5760 l 5657 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5657 5700 m 5553 5760 l 5553 5640 l 5657 5581 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 5553 5520 m 5449 5580 l 5449 5460 l 5553 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 5400 m 5449 5460 l 5449 5340 l 5553 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 5280 m 5449 5340 l 5449 5220 l 5553 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 5160 m 5449 5220 l 5449 5100 l 5553 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 5040 m 5449 5100 l 5449 4980 l 5553 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4920 m 5449 4980 l 5449 4860 l 5553 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4800 m 5449 4860 l 5449 4740 l 5553 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4680 m 5449 4740 l 5449 4620 l 5553 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4560 m 5449 4620 l 5449 4500 l 5553 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4440 m 5449 4500 l 5449 4380 l 5553 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4320 m 5449 4380 l 5449 4260 l 5553 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4200 m 5449 4260 l 5449 4140 l 5553 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 4080 m 5449 4140 l 5449 4020 l 5553 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5940 m 5345 5999 l 5345 5879 l 5449 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5820 m 5345 5879 l 5345 5760 l 5449 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5700 m 5345 5760 l 5345 5640 l 5449 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5580 m 5345 5640 l 5345 5520 l 5449 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5460 m 5345 5520 l 5345 5400 l 5449 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5340 m 5345 5400 l 5345 5280 l 5449 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5220 m 5345 5280 l 5345 5160 l 5449 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5100 m 5345 5160 l 5345 5040 l 5449 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4980 m 5345 5040 l 5345 4920 l 5449 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4860 m 5345 4920 l 5345 4800 l 5449 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4740 m 5345 4800 l 5345 4680 l 5449 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4620 m 5345 4680 l 5345 4560 l 5449 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4500 m 5345 4560 l 5345 4440 l 5449 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4380 m 5345 4440 l 5345 4320 l 5449 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4260 m 5345 4320 l 5345 4200 l 5449 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 4140 m 5345 4200 l 5345 4080 l 5449 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6000 m 5241 6059 l 5241 5939 l 5345 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5880 m 5241 5939 l 5241 5819 l 5345 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5760 m 5241 5819 l 5241 5700 l 5345 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5640 m 5241 5700 l 5241 5580 l 5345 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5520 m 5241 5580 l 5241 5460 l 5345 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5400 m 5241 5460 l 5241 5340 l 5345 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5280 m 5241 5340 l 5241 5220 l 5345 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5160 m 5241 5220 l 5241 5100 l 5345 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 5040 m 5241 5100 l 5241 4980 l 5345 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4920 m 5241 4980 l 5241 4860 l 5345 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4800 m 5241 4860 l 5241 4740 l 5345 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4680 m 5241 4740 l 5241 4620 l 5345 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4560 m 5241 4620 l 5241 4500 l 5345 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4440 m 5241 4500 l 5241 4380 l 5345 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4320 m 5241 4380 l 5241 4260 l 5345 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 4200 m 5241 4260 l 5241 4140 l 5345 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6060 m 5137 6119 l 5137 5999 l 5241 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5940 m 5137 5999 l 5137 5879 l 5241 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5820 m 5137 5879 l 5137 5760 l 5241 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5700 m 5137 5760 l 5137 5640 l 5241 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5580 m 5137 5640 l 5137 5520 l 5241 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5460 m 5137 5520 l 5137 5400 l 5241 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5340 m 5137 5400 l 5137 5280 l 5241 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5220 m 5137 5280 l 5137 5160 l 5241 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 5100 m 5137 5160 l 5137 5040 l 5241 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4980 m 5137 5040 l 5137 4920 l 5241 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4860 m 5137 4920 l 5137 4800 l 5241 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4740 m 5137 4800 l 5137 4680 l 5241 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4620 m 5137 4680 l 5137 4560 l 5241 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4500 m 5137 4560 l 5137 4440 l 5241 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4380 m 5137 4440 l 5137 4320 l 5241 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 4260 m 5137 4320 l 5137 4200 l 5241 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6120 m 5033 6179 l 5033 6059 l 5137 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6000 m 5033 6059 l 5033 5939 l 5137 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5880 m 5033 5939 l 5033 5819 l 5137 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5760 m 5033 5819 l 5033 5700 l 5137 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5640 m 5033 5700 l 5033 5580 l 5137 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5520 m 5033 5580 l 5033 5460 l 5137 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5400 m 5033 5460 l 5033 5340 l 5137 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5280 m 5033 5340 l 5033 5220 l 5137 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5160 m 5033 5220 l 5033 5100 l 5137 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 5040 m 5033 5100 l 5033 4980 l 5137 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4920 m 5033 4980 l 5033 4860 l 5137 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4800 m 5033 4860 l 5033 4740 l 5137 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4680 m 5033 4740 l 5033 4620 l 5137 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4560 m 5033 4620 l 5033 4500 l 5137 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4440 m 5033 4500 l 5033 4380 l 5137 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 4320 m 5033 4380 l 5033 4260 l 5137 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6180 m 4929 6239 l 4929 6119 l 5033 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6060 m 4929 6119 l 4929 5999 l 5033 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5940 m 4929 5999 l 4929 5879 l 5033 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5820 m 4929 5879 l 4929 5760 l 5033 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5700 m 4929 5760 l 4929 5640 l 5033 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5580 m 4929 5640 l 4929 5520 l 5033 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5460 m 4929 5520 l 4929 5400 l 5033 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5340 m 4929 5400 l 4929 5280 l 5033 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5220 m 4929 5280 l 4929 5160 l 5033 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 5100 m 4929 5160 l 4929 5040 l 5033 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4980 m 4929 5040 l 4929 4920 l 5033 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4860 m 4929 4920 l 4929 4800 l 5033 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4740 m 4929 4800 l 4929 4680 l 5033 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4620 m 4929 4680 l 4929 4560 l 5033 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4500 m 4929 4560 l 4929 4440 l 5033 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 4380 m 4929 4440 l 4929 4320 l 5033 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6240 m 4825 6299 l 4825 6179 l 4929 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6120 m 4825 6179 l 4825 6059 l 4929 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6000 m 4825 6059 l 4825 5939 l 4929 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5880 m 4825 5939 l 4825 5819 l 4929 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5760 m 4825 5819 l 4825 5700 l 4929 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5640 m 4825 5700 l 4825 5580 l 4929 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5520 m 4825 5580 l 4825 5460 l 4929 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5400 m 4825 5460 l 4825 5340 l 4929 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5280 m 4825 5340 l 4825 5220 l 4929 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5160 m 4825 5220 l 4825 5100 l 4929 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 5040 m 4825 5100 l 4825 4980 l 4929 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 4920 m 4825 4980 l 4825 4860 l 4929 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 4800 m 4825 4860 l 4825 4740 l 4929 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 4680 m 4825 4740 l 4825 4620 l 4929 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 4560 m 4825 4620 l 4825 4500 l 4929 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 4440 m 4825 4500 l 4825 4380 l 4929 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6300 m 4721 6359 l 4721 6239 l 4825 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6180 m 4721 6239 l 4721 6119 l 4825 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6060 m 4721 6119 l 4721 5999 l 4825 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5940 m 4721 5999 l 4721 5879 l 4825 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5820 m 4721 5879 l 4721 5760 l 4825 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5700 m 4721 5760 l 4721 5640 l 4825 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5580 m 4721 5640 l 4721 5520 l 4825 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5460 m 4721 5520 l 4721 5400 l 4825 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5340 m 4721 5400 l 4721 5280 l 4825 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5220 m 4721 5280 l 4721 5160 l 4825 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 5100 m 4721 5160 l 4721 5040 l 4825 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 4980 m 4721 5040 l 4721 4920 l 4825 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 4860 m 4721 4920 l 4721 4800 l 4825 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 4740 m 4721 4800 l 4721 4680 l 4825 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 4620 m 4721 4680 l 4721 4560 l 4825 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 4500 m 4721 4560 l 4721 4440 l 4825 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6360 m 4617 6419 l 4617 6299 l 4721 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6240 m 4617 6299 l 4617 6179 l 4721 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6120 m 4617 6179 l 4617 6059 l 4721 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6000 m 4617 6059 l 4617 5939 l 4721 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5880 m 4617 5939 l 4617 5819 l 4721 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5760 m 4617 5819 l 4617 5700 l 4721 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5640 m 4617 5700 l 4617 5580 l 4721 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5520 m 4617 5580 l 4617 5460 l 4721 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5400 m 4617 5460 l 4617 5340 l 4721 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5280 m 4617 5340 l 4617 5220 l 4721 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5160 m 4617 5220 l 4617 5100 l 4721 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 5040 m 4617 5100 l 4617 4980 l 4721 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 4920 m 4617 4980 l 4617 4860 l 4721 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 4800 m 4617 4860 l 4617 4740 l 4721 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 4680 m 4617 4740 l 4617 4620 l 4721 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 4560 m 4617 4620 l 4617 4500 l 4721 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6420 m 4513 6479 l 4513 6359 l 4617 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6300 m 4513 6359 l 4513 6239 l 4617 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6180 m 4513 6239 l 4513 6119 l 4617 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6060 m 4513 6119 l 4513 5999 l 4617 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5940 m 4513 5999 l 4513 5879 l 4617 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5820 m 4513 5879 l 4513 5760 l 4617 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5700 m 4513 5760 l 4513 5640 l 4617 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5580 m 4513 5640 l 4513 5520 l 4617 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5460 m 4513 5520 l 4513 5400 l 4617 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5340 m 4513 5400 l 4513 5280 l 4617 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5220 m 4513 5280 l 4513 5160 l 4617 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 5100 m 4513 5160 l 4513 5040 l 4617 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 4980 m 4513 5040 l 4513 4920 l 4617 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 4860 m 4513 4920 l 4513 4800 l 4617 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 4740 m 4513 4800 l 4513 4680 l 4617 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 4620 m 4513 4680 l 4513 4560 l 4617 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6480 m 4410 6539 l 4410 6419 l 4513 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6360 m 4410 6419 l 4410 6299 l 4513 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6240 m 4410 6299 l 4410 6179 l 4513 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6120 m 4410 6179 l 4410 6059 l 4513 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6000 m 4410 6059 l 4410 5939 l 4513 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5880 m 4410 5939 l 4410 5819 l 4513 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5760 m 4410 5819 l 4410 5700 l 4513 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5640 m 4410 5700 l 4410 5580 l 4513 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5520 m 4410 5580 l 4410 5460 l 4513 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5400 m 4410 5460 l 4410 5340 l 4513 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5280 m 4410 5340 l 4410 5220 l 4513 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5160 m 4410 5220 l 4410 5100 l 4513 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 5040 m 4410 5100 l 4410 4980 l 4513 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 4920 m 4410 4980 l 4410 4860 l 4513 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 4800 m 4410 4860 l 4410 4740 l 4513 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 4680 m 4410 4740 l 4410 4620 l 4513 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6540 m 4306 6599 l 4306 6479 l 4410 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6420 m 4306 6479 l 4306 6359 l 4410 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6300 m 4306 6359 l 4306 6239 l 4410 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6180 m 4306 6239 l 4306 6119 l 4410 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6060 m 4306 6119 l 4306 5999 l 4410 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5940 m 4306 5999 l 4306 5879 l 4410 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5820 m 4306 5879 l 4306 5760 l 4410 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5700 m 4306 5760 l 4306 5640 l 4410 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5580 m 4306 5640 l 4306 5520 l 4410 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5460 m 4306 5520 l 4306 5400 l 4410 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5340 m 4306 5400 l 4306 5280 l 4410 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5220 m 4306 5280 l 4306 5160 l 4410 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 5100 m 4306 5160 l 4306 5040 l 4410 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 4980 m 4306 5040 l 4306 4920 l 4410 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 4860 m 4306 4920 l 4306 4800 l 4410 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 4740 m 4306 4800 l 4306 4680 l 4410 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6600 m 4202 6659 l 4202 6539 l 4306 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6480 m 4202 6539 l 4202 6419 l 4306 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6360 m 4202 6419 l 4202 6299 l 4306 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6240 m 4202 6299 l 4202 6179 l 4306 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6120 m 4202 6179 l 4202 6059 l 4306 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6000 m 4202 6059 l 4202 5939 l 4306 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5880 m 4202 5939 l 4202 5819 l 4306 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5760 m 4202 5819 l 4202 5700 l 4306 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5640 m 4202 5700 l 4202 5580 l 4306 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5520 m 4202 5580 l 4202 5460 l 4306 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5400 m 4202 5460 l 4202 5340 l 4306 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5280 m 4202 5340 l 4202 5220 l 4306 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5160 m 4202 5220 l 4202 5100 l 4306 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 5040 m 4202 5100 l 4202 4980 l 4306 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 4920 m 4202 4980 l 4202 4860 l 4306 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 4800 m 4202 4860 l 4202 4740 l 4306 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6660 m 4098 6719 l 4098 6599 l 4202 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6540 m 4098 6599 l 4098 6479 l 4202 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6420 m 4098 6479 l 4098 6359 l 4202 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6300 m 4098 6359 l 4098 6239 l 4202 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6180 m 4098 6239 l 4098 6119 l 4202 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6060 m 4098 6119 l 4098 5999 l 4202 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5940 m 4098 5999 l 4098 5879 l 4202 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5820 m 4098 5879 l 4098 5760 l 4202 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5700 m 4098 5760 l 4098 5640 l 4202 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5580 m 4098 5640 l 4098 5520 l 4202 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5460 m 4098 5520 l 4098 5400 l 4202 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5340 m 4098 5400 l 4098 5280 l 4202 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5220 m 4098 5280 l 4098 5160 l 4202 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 5100 m 4098 5160 l 4098 5040 l 4202 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 4980 m 4098 5040 l 4098 4920 l 4202 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 4860 m 4098 4920 l 4098 4800 l 4202 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 5940 m 5449 5820 l 5553 5880 l 5553 6000 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5449 5820 m 5449 5700 l 5553 5760 l 5553 5880 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5449 5700 m 5449 5580 l 5553 5641 l 5553 5760 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5553 5520 m 5553 5400 l 5657 5461 l 5657 5581 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5657 5340 m 5657 5220 l 5760 5281 l 5760 5401 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5657 5220 m 5657 5100 l 5760 5161 l 5760 5281 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5657 5100 m 5657 4980 l 5760 5041 l 5760 5161 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5657 4980 m 5657 4860 l 5760 4921 l 5760 5041 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 5760 4800 m 5760 4680 l 5863 4741 l 5863 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4680 m 5760 4560 l 5863 4621 l 5863 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4560 m 5760 4440 l 5863 4501 l 5863 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4440 m 5760 4320 l 5863 4381 l 5863 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4320 m 5760 4200 l 5863 4261 l 5863 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4200 m 5760 4080 l 5863 4141 l 5863 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4080 m 5760 3960 l 5863 4021 l 5863 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 3960 m 5760 3840 l 5863 3901 l 5863 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5820 m 5863 5700 l 5967 5760 l 5967 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5700 m 5863 5580 l 5967 5641 l 5967 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5580 m 5863 5460 l 5967 5521 l 5967 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5460 m 5863 5340 l 5967 5401 l 5967 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5340 m 5863 5220 l 5967 5281 l 5967 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5220 m 5863 5100 l 5967 5161 l 5967 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5100 m 5863 4980 l 5967 5041 l 5967 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4980 m 5863 4860 l 5967 4921 l 5967 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4860 m 5863 4740 l 5967 4801 l 5967 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4740 m 5863 4620 l 5967 4681 l 5967 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4620 m 5863 4500 l 5967 4561 l 5967 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4500 m 5863 4380 l 5967 4441 l 5967 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4380 m 5863 4260 l 5967 4321 l 5967 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4260 m 5863 4140 l 5967 4201 l 5967 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4140 m 5863 4020 l 5967 4081 l 5967 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 4020 m 5863 3900 l 5967 3961 l 5967 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5880 m 5967 5760 l 6071 5820 l 6071 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5760 m 5967 5640 l 6071 5701 l 6071 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5640 m 5967 5520 l 6071 5581 l 6071 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5520 m 5967 5400 l 6071 5461 l 6071 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5400 m 5967 5280 l 6071 5341 l 6071 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5280 m 5967 5160 l 6071 5221 l 6071 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5160 m 5967 5040 l 6071 5101 l 6071 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5040 m 5967 4920 l 6071 4981 l 6071 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4920 m 5967 4800 l 6071 4861 l 6071 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4800 m 5967 4680 l 6071 4741 l 6071 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4680 m 5967 4560 l 6071 4621 l 6071 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4560 m 5967 4440 l 6071 4501 l 6071 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4440 m 5967 4320 l 6071 4381 l 6071 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4320 m 5967 4200 l 6071 4261 l 6071 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4200 m 5967 4080 l 6071 4141 l 6071 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 4080 m 5967 3960 l 6071 4021 l 6071 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5940 m 6071 5820 l 6175 5880 l 6175 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5820 m 6071 5700 l 6175 5760 l 6175 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5700 m 6071 5580 l 6175 5641 l 6175 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5580 m 6071 5460 l 6175 5521 l 6175 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5460 m 6071 5340 l 6175 5401 l 6175 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5340 m 6071 5220 l 6175 5281 l 6175 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5220 m 6071 5100 l 6175 5161 l 6175 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5100 m 6071 4980 l 6175 5041 l 6175 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4980 m 6071 4860 l 6175 4921 l 6175 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4860 m 6071 4740 l 6175 4801 l 6175 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4740 m 6071 4620 l 6175 4681 l 6175 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4620 m 6071 4500 l 6175 4561 l 6175 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4500 m 6071 4380 l 6175 4441 l 6175 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4380 m 6071 4260 l 6175 4321 l 6175 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4260 m 6071 4140 l 6175 4201 l 6175 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 4140 m 6071 4020 l 6175 4081 l 6175 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6000 m 6175 5880 l 6279 5940 l 6279 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5880 m 6175 5760 l 6279 5820 l 6279 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5760 m 6175 5640 l 6279 5701 l 6279 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5640 m 6175 5520 l 6279 5581 l 6279 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5520 m 6175 5400 l 6279 5461 l 6279 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5400 m 6175 5280 l 6279 5341 l 6279 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5280 m 6175 5160 l 6279 5221 l 6279 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5160 m 6175 5040 l 6279 5101 l 6279 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 5040 m 6175 4920 l 6279 4981 l 6279 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4920 m 6175 4800 l 6279 4861 l 6279 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4800 m 6175 4680 l 6279 4741 l 6279 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4680 m 6175 4560 l 6279 4621 l 6279 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4560 m 6175 4440 l 6279 4501 l 6279 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4440 m 6175 4320 l 6279 4381 l 6279 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4320 m 6175 4200 l 6279 4261 l 6279 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 4200 m 6175 4080 l 6279 4141 l 6279 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6060 m 6279 5940 l 6383 6000 l 6383 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5940 m 6279 5820 l 6383 5880 l 6383 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5820 m 6279 5700 l 6383 5760 l 6383 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5700 m 6279 5580 l 6383 5641 l 6383 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5580 m 6279 5460 l 6383 5521 l 6383 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5460 m 6279 5340 l 6383 5401 l 6383 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5340 m 6279 5220 l 6383 5281 l 6383 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5220 m 6279 5100 l 6383 5161 l 6383 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 5100 m 6279 4980 l 6383 5041 l 6383 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4980 m 6279 4860 l 6383 4921 l 6383 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4860 m 6279 4740 l 6383 4801 l 6383 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4740 m 6279 4620 l 6383 4681 l 6383 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4620 m 6279 4500 l 6383 4561 l 6383 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4500 m 6279 4380 l 6383 4441 l 6383 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4380 m 6279 4260 l 6383 4321 l 6383 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 4260 m 6279 4140 l 6383 4201 l 6383 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6120 m 6383 6000 l 6487 6060 l 6487 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6000 m 6383 5880 l 6487 5940 l 6487 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5880 m 6383 5760 l 6487 5820 l 6487 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5760 m 6383 5640 l 6487 5701 l 6487 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5640 m 6383 5520 l 6487 5581 l 6487 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5520 m 6383 5400 l 6487 5461 l 6487 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5400 m 6383 5280 l 6487 5341 l 6487 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5280 m 6383 5160 l 6487 5221 l 6487 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5160 m 6383 5040 l 6487 5101 l 6487 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 5040 m 6383 4920 l 6487 4981 l 6487 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4920 m 6383 4800 l 6487 4861 l 6487 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4800 m 6383 4680 l 6487 4741 l 6487 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4680 m 6383 4560 l 6487 4621 l 6487 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4560 m 6383 4440 l 6487 4501 l 6487 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4440 m 6383 4320 l 6487 4381 l 6487 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 4320 m 6383 4200 l 6487 4261 l 6487 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6180 m 6487 6060 l 6591 6120 l 6591 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6060 m 6487 5940 l 6591 6000 l 6591 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5940 m 6487 5820 l 6591 5880 l 6591 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5820 m 6487 5700 l 6591 5760 l 6591 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5700 m 6487 5580 l 6591 5641 l 6591 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5580 m 6487 5460 l 6591 5521 l 6591 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5460 m 6487 5340 l 6591 5401 l 6591 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5340 m 6487 5220 l 6591 5281 l 6591 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5220 m 6487 5100 l 6591 5161 l 6591 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 5100 m 6487 4980 l 6591 5041 l 6591 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4980 m 6487 4860 l 6591 4921 l 6591 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4860 m 6487 4740 l 6591 4801 l 6591 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4740 m 6487 4620 l 6591 4681 l 6591 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4620 m 6487 4500 l 6591 4561 l 6591 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4500 m 6487 4380 l 6591 4441 l 6591 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 4380 m 6487 4260 l 6591 4321 l 6591 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6240 m 6591 6120 l 6695 6180 l 6695 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6120 m 6591 6000 l 6695 6060 l 6695 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6000 m 6591 5880 l 6695 5940 l 6695 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5880 m 6591 5760 l 6695 5820 l 6695 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5760 m 6591 5640 l 6695 5701 l 6695 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5640 m 6591 5520 l 6695 5581 l 6695 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5520 m 6591 5400 l 6695 5461 l 6695 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5400 m 6591 5280 l 6695 5341 l 6695 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5280 m 6591 5160 l 6695 5221 l 6695 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5160 m 6591 5040 l 6695 5101 l 6695 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 5040 m 6591 4920 l 6695 4981 l 6695 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 4920 m 6591 4800 l 6695 4861 l 6695 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 4800 m 6591 4680 l 6695 4741 l 6695 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 4680 m 6591 4560 l 6695 4621 l 6695 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 4560 m 6591 4440 l 6695 4501 l 6695 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 4440 m 6591 4320 l 6695 4381 l 6695 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6300 m 6695 6180 l 6799 6240 l 6799 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6180 m 6695 6060 l 6799 6120 l 6799 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6060 m 6695 5940 l 6799 6000 l 6799 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5940 m 6695 5820 l 6799 5880 l 6799 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5820 m 6695 5700 l 6799 5760 l 6799 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5700 m 6695 5580 l 6799 5641 l 6799 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5580 m 6695 5460 l 6799 5521 l 6799 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5460 m 6695 5340 l 6799 5401 l 6799 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5340 m 6695 5220 l 6799 5281 l 6799 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5220 m 6695 5100 l 6799 5161 l 6799 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 5100 m 6695 4980 l 6799 5041 l 6799 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 4980 m 6695 4860 l 6799 4921 l 6799 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 4860 m 6695 4740 l 6799 4801 l 6799 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 4740 m 6695 4620 l 6799 4681 l 6799 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 4620 m 6695 4500 l 6799 4561 l 6799 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 4500 m 6695 4380 l 6799 4441 l 6799 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6360 m 6799 6240 l 6903 6300 l 6903 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6240 m 6799 6120 l 6903 6180 l 6903 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6120 m 6799 6000 l 6903 6060 l 6903 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6000 m 6799 5880 l 6903 5940 l 6903 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5880 m 6799 5760 l 6903 5820 l 6903 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5760 m 6799 5640 l 6903 5701 l 6903 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5640 m 6799 5520 l 6903 5581 l 6903 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5520 m 6799 5400 l 6903 5461 l 6903 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5400 m 6799 5280 l 6903 5341 l 6903 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5280 m 6799 5160 l 6903 5221 l 6903 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5160 m 6799 5040 l 6903 5101 l 6903 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 5040 m 6799 4920 l 6903 4981 l 6903 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 4920 m 6799 4800 l 6903 4861 l 6903 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 4800 m 6799 4680 l 6903 4741 l 6903 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 4680 m 6799 4560 l 6903 4621 l 6903 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 4560 m 6799 4440 l 6903 4501 l 6903 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6420 m 6903 6300 l 7007 6360 l 7007 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6300 m 6903 6180 l 7007 6240 l 7007 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6180 m 6903 6060 l 7007 6120 l 7007 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6060 m 6903 5940 l 7007 6000 l 7007 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5940 m 6903 5820 l 7007 5880 l 7007 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5820 m 6903 5700 l 7007 5760 l 7007 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5700 m 6903 5580 l 7007 5641 l 7007 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5580 m 6903 5460 l 7007 5521 l 7007 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5460 m 6903 5340 l 7007 5401 l 7007 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5340 m 6903 5220 l 7007 5281 l 7007 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5220 m 6903 5100 l 7007 5161 l 7007 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 5100 m 6903 4980 l 7007 5041 l 7007 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 4980 m 6903 4860 l 7007 4921 l 7007 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 4860 m 6903 4740 l 7007 4801 l 7007 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 4740 m 6903 4620 l 7007 4681 l 7007 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 4620 m 6903 4500 l 7007 4561 l 7007 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6480 m 7007 6360 l 7110 6420 l 7110 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6360 m 7007 6240 l 7110 6300 l 7110 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6240 m 7007 6120 l 7110 6180 l 7110 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6120 m 7007 6000 l 7110 6060 l 7110 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6000 m 7007 5880 l 7110 5940 l 7110 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5880 m 7007 5760 l 7110 5820 l 7110 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5760 m 7007 5640 l 7110 5701 l 7110 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5640 m 7007 5520 l 7110 5581 l 7110 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5520 m 7007 5400 l 7110 5461 l 7110 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5400 m 7007 5280 l 7110 5341 l 7110 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5280 m 7007 5160 l 7110 5221 l 7110 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5160 m 7007 5040 l 7110 5101 l 7110 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 5040 m 7007 4920 l 7110 4981 l 7110 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 4920 m 7007 4800 l 7110 4861 l 7110 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 4800 m 7007 4680 l 7110 4741 l 7110 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 4680 m 7007 4560 l 7110 4621 l 7110 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6540 m 7110 6420 l 7214 6480 l 7214 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6420 m 7110 6300 l 7214 6360 l 7214 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6300 m 7110 6180 l 7214 6240 l 7214 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6180 m 7110 6060 l 7214 6120 l 7214 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6060 m 7110 5940 l 7214 6000 l 7214 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5940 m 7110 5820 l 7214 5880 l 7214 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5820 m 7110 5700 l 7214 5760 l 7214 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5700 m 7110 5580 l 7214 5641 l 7214 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5580 m 7110 5460 l 7214 5521 l 7214 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5460 m 7110 5340 l 7214 5401 l 7214 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5340 m 7110 5220 l 7214 5281 l 7214 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5220 m 7110 5100 l 7214 5161 l 7214 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 5100 m 7110 4980 l 7214 5041 l 7214 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 4980 m 7110 4860 l 7214 4921 l 7214 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 4860 m 7110 4740 l 7214 4801 l 7214 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 4740 m 7110 4620 l 7214 4681 l 7214 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6600 m 7214 6480 l 7318 6540 l 7318 6660 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6480 m 7214 6360 l 7318 6420 l 7318 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6360 m 7214 6240 l 7318 6300 l 7318 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6240 m 7214 6120 l 7318 6180 l 7318 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6120 m 7214 6000 l 7318 6060 l 7318 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6000 m 7214 5880 l 7318 5940 l 7318 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5880 m 7214 5760 l 7318 5820 l 7318 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5760 m 7214 5640 l 7318 5701 l 7318 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5640 m 7214 5520 l 7318 5581 l 7318 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5520 m 7214 5400 l 7318 5461 l 7318 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5400 m 7214 5280 l 7318 5341 l 7318 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5280 m 7214 5160 l 7318 5221 l 7318 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5160 m 7214 5040 l 7318 5101 l 7318 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 5040 m 7214 4920 l 7318 4981 l 7318 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 4920 m 7214 4800 l 7318 4861 l 7318 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 4800 m 7214 4680 l 7318 4741 l 7318 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6660 m 7318 6540 l 7422 6600 l 7422 6720 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6540 m 7318 6420 l 7422 6480 l 7422 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6420 m 7318 6300 l 7422 6360 l 7422 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6300 m 7318 6180 l 7422 6240 l 7422 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6180 m 7318 6060 l 7422 6120 l 7422 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6060 m 7318 5940 l 7422 6000 l 7422 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5940 m 7318 5820 l 7422 5880 l 7422 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5820 m 7318 5700 l 7422 5760 l 7422 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5700 m 7318 5580 l 7422 5641 l 7422 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5580 m 7318 5460 l 7422 5521 l 7422 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5460 m 7318 5340 l 7422 5401 l 7422 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5340 m 7318 5220 l 7422 5281 l 7422 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5220 m 7318 5100 l 7422 5161 l 7422 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 5100 m 7318 4980 l 7422 5041 l 7422 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 4980 m 7318 4860 l 7422 4921 l 7422 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 4860 m 7318 4740 l 7422 4801 l 7422 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 4800 m 5863 4861 l 5760 4920 l 5657 4860 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5657 5340 m 5760 5401 l 5657 5460 l 5553 5400 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5553 5520 m 5657 5581 l 5553 5640 l 5449 5580 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 5449 5940 m 5553 6000 l 5449 6059 l 5345 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6000 m 5449 6060 l 5345 6119 l 5241 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6060 m 5345 6120 l 5241 6179 l 5137 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6120 m 5241 6180 l 5137 6239 l 5033 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6180 m 5137 6240 l 5033 6299 l 4929 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6240 m 5033 6300 l 4929 6359 l 4825 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6300 m 4929 6360 l 4825 6419 l 4721 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6360 m 4825 6420 l 4721 6479 l 4617 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6420 m 4721 6480 l 4617 6539 l 4513 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6480 m 4617 6540 l 4513 6599 l 4410 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6540 m 4513 6600 l 4410 6659 l 4306 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6600 m 4410 6660 l 4306 6719 l 4202 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4202 6660 m 4306 6720 l 4202 6779 l 4098 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5820 m 5967 5880 l 5863 5939 l 5760 5879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 5880 m 5863 5940 l 5760 5999 l 5657 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 5940 m 5760 6000 l 5657 6059 l 5553 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6000 m 5657 6060 l 5553 6119 l 5449 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6060 m 5553 6120 l 5449 6179 l 5345 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6120 m 5449 6180 l 5345 6239 l 5241 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6180 m 5345 6240 l 5241 6299 l 5137 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6240 m 5241 6300 l 5137 6359 l 5033 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6300 m 5137 6360 l 5033 6419 l 4929 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6360 m 5033 6420 l 4929 6479 l 4825 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6420 m 4929 6480 l 4825 6539 l 4721 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6480 m 4825 6540 l 4721 6599 l 4617 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6540 m 4721 6600 l 4617 6659 l 4513 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6600 m 4617 6660 l 4513 6719 l 4410 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6660 m 4513 6720 l 4410 6779 l 4306 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4306 6720 m 4410 6780 l 4306 6839 l 4202 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 5880 m 6071 5940 l 5967 5999 l 5863 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 5940 m 5967 6000 l 5863 6059 l 5760 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6000 m 5863 6060 l 5760 6119 l 5657 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6060 m 5760 6120 l 5657 6179 l 5553 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6120 m 5657 6180 l 5553 6239 l 5449 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6180 m 5553 6240 l 5449 6299 l 5345 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6240 m 5449 6300 l 5345 6359 l 5241 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6300 m 5345 6360 l 5241 6419 l 5137 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6360 m 5241 6420 l 5137 6479 l 5033 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6420 m 5137 6480 l 5033 6539 l 4929 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6480 m 5033 6540 l 4929 6599 l 4825 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6540 m 4929 6600 l 4825 6659 l 4721 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6600 m 4825 6660 l 4721 6719 l 4617 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6660 m 4721 6720 l 4617 6779 l 4513 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6720 m 4617 6780 l 4513 6839 l 4410 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4410 6780 m 4513 6840 l 4410 6899 l 4306 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 5940 m 6175 6000 l 6071 6059 l 5967 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6000 m 6071 6060 l 5967 6119 l 5863 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6060 m 5967 6120 l 5863 6179 l 5760 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6120 m 5863 6180 l 5760 6239 l 5657 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6180 m 5760 6240 l 5657 6299 l 5553 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6240 m 5657 6300 l 5553 6359 l 5449 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6300 m 5553 6360 l 5449 6419 l 5345 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6360 m 5449 6420 l 5345 6479 l 5241 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6420 m 5345 6480 l 5241 6539 l 5137 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6480 m 5241 6540 l 5137 6599 l 5033 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6540 m 5137 6600 l 5033 6659 l 4929 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6600 m 5033 6660 l 4929 6719 l 4825 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6660 m 4929 6720 l 4825 6779 l 4721 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6720 m 4825 6780 l 4721 6839 l 4617 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6780 m 4721 6840 l 4617 6899 l 4513 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4513 6840 m 4617 6900 l 4513 6959 l 4410 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6000 m 6279 6060 l 6175 6119 l 6071 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6060 m 6175 6120 l 6071 6179 l 5967 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6120 m 6071 6180 l 5967 6239 l 5863 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6180 m 5967 6240 l 5863 6299 l 5760 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6240 m 5863 6300 l 5760 6359 l 5657 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6300 m 5760 6360 l 5657 6419 l 5553 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6360 m 5657 6420 l 5553 6479 l 5449 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6420 m 5553 6480 l 5449 6539 l 5345 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6480 m 5449 6540 l 5345 6599 l 5241 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6540 m 5345 6600 l 5241 6659 l 5137 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6600 m 5241 6660 l 5137 6719 l 5033 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6660 m 5137 6720 l 5033 6779 l 4929 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6720 m 5033 6780 l 4929 6839 l 4825 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6780 m 4929 6840 l 4825 6899 l 4721 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6840 m 4825 6900 l 4721 6959 l 4617 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4617 6900 m 4721 6960 l 4617 7019 l 4513 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6060 m 6383 6120 l 6279 6179 l 6175 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6120 m 6279 6180 l 6175 6239 l 6071 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6180 m 6175 6240 l 6071 6299 l 5967 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6240 m 6071 6300 l 5967 6359 l 5863 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6300 m 5967 6360 l 5863 6419 l 5760 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6360 m 5863 6420 l 5760 6479 l 5657 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6420 m 5760 6480 l 5657 6539 l 5553 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6480 m 5657 6540 l 5553 6599 l 5449 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6540 m 5553 6600 l 5449 6659 l 5345 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6600 m 5449 6660 l 5345 6719 l 5241 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6660 m 5345 6720 l 5241 6779 l 5137 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6720 m 5241 6780 l 5137 6839 l 5033 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6780 m 5137 6840 l 5033 6899 l 4929 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6840 m 5033 6900 l 4929 6959 l 4825 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 6900 m 4929 6960 l 4825 7019 l 4721 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4721 6960 m 4825 7020 l 4721 7079 l 4617 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6120 m 6487 6180 l 6383 6239 l 6279 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6180 m 6383 6240 l 6279 6299 l 6175 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6240 m 6279 6300 l 6175 6359 l 6071 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6300 m 6175 6360 l 6071 6419 l 5967 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6360 m 6071 6420 l 5967 6479 l 5863 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6420 m 5967 6480 l 5863 6539 l 5760 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6480 m 5863 6540 l 5760 6599 l 5657 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6540 m 5760 6600 l 5657 6659 l 5553 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6600 m 5657 6660 l 5553 6719 l 5449 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6660 m 5553 6720 l 5449 6779 l 5345 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6720 m 5449 6780 l 5345 6839 l 5241 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6780 m 5345 6840 l 5241 6899 l 5137 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6840 m 5241 6900 l 5137 6959 l 5033 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 6900 m 5137 6960 l 5033 7019 l 4929 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 6960 m 5033 7020 l 4929 7079 l 4825 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4825 7020 m 4929 7080 l 4825 7139 l 4721 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6180 m 6591 6240 l 6487 6299 l 6383 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6240 m 6487 6300 l 6383 6359 l 6279 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6300 m 6383 6360 l 6279 6419 l 6175 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6360 m 6279 6420 l 6175 6479 l 6071 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6420 m 6175 6480 l 6071 6539 l 5967 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6480 m 6071 6540 l 5967 6599 l 5863 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6540 m 5967 6600 l 5863 6659 l 5760 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6600 m 5863 6660 l 5760 6719 l 5657 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6660 m 5760 6720 l 5657 6779 l 5553 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6720 m 5657 6780 l 5553 6839 l 5449 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6780 m 5553 6840 l 5449 6899 l 5345 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6840 m 5449 6900 l 5345 6959 l 5241 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 6900 m 5345 6960 l 5241 7019 l 5137 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 6960 m 5241 7020 l 5137 7079 l 5033 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 7020 m 5137 7080 l 5033 7139 l 4929 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 4929 7080 m 5033 7140 l 4929 7199 l 4825 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6240 m 6695 6300 l 6591 6359 l 6487 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6300 m 6591 6360 l 6487 6419 l 6383 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6360 m 6487 6420 l 6383 6479 l 6279 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6420 m 6383 6480 l 6279 6539 l 6175 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6480 m 6279 6540 l 6175 6599 l 6071 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6540 m 6175 6600 l 6071 6659 l 5967 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6600 m 6071 6660 l 5967 6719 l 5863 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6660 m 5967 6720 l 5863 6779 l 5760 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6720 m 5863 6780 l 5760 6839 l 5657 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6780 m 5760 6840 l 5657 6899 l 5553 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6840 m 5657 6900 l 5553 6959 l 5449 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 6900 m 5553 6960 l 5449 7019 l 5345 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 6960 m 5449 7020 l 5345 7079 l 5241 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 7020 m 5345 7080 l 5241 7139 l 5137 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 7080 m 5241 7140 l 5137 7199 l 5033 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5033 7140 m 5137 7200 l 5033 7259 l 4929 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6300 m 6799 6360 l 6695 6419 l 6591 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6360 m 6695 6420 l 6591 6479 l 6487 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6420 m 6591 6480 l 6487 6539 l 6383 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6480 m 6487 6540 l 6383 6599 l 6279 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6540 m 6383 6600 l 6279 6659 l 6175 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6600 m 6279 6660 l 6175 6719 l 6071 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6660 m 6175 6720 l 6071 6779 l 5967 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6720 m 6071 6780 l 5967 6839 l 5863 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6780 m 5967 6840 l 5863 6899 l 5760 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6840 m 5863 6900 l 5760 6959 l 5657 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 6900 m 5760 6960 l 5657 7019 l 5553 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 6960 m 5657 7020 l 5553 7079 l 5449 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 7020 m 5553 7080 l 5449 7139 l 5345 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 7080 m 5449 7140 l 5345 7199 l 5241 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 7140 m 5345 7200 l 5241 7259 l 5137 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5137 7200 m 5241 7260 l 5137 7319 l 5033 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6360 m 6903 6420 l 6799 6479 l 6695 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6420 m 6799 6480 l 6695 6539 l 6591 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6480 m 6695 6540 l 6591 6599 l 6487 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6540 m 6591 6600 l 6487 6659 l 6383 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6600 m 6487 6660 l 6383 6719 l 6279 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6660 m 6383 6720 l 6279 6779 l 6175 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6720 m 6279 6780 l 6175 6839 l 6071 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6780 m 6175 6840 l 6071 6899 l 5967 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6840 m 6071 6900 l 5967 6959 l 5863 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 6900 m 5967 6960 l 5863 7019 l 5760 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 6960 m 5863 7020 l 5760 7079 l 5657 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 7020 m 5760 7080 l 5657 7139 l 5553 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 7080 m 5657 7140 l 5553 7199 l 5449 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 7140 m 5553 7200 l 5449 7259 l 5345 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 7200 m 5449 7260 l 5345 7319 l 5241 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5241 7260 m 5345 7320 l 5241 7379 l 5137 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6420 m 7007 6480 l 6903 6539 l 6799 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6480 m 6903 6540 l 6799 6599 l 6695 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6540 m 6799 6600 l 6695 6659 l 6591 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6600 m 6695 6660 l 6591 6719 l 6487 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6660 m 6591 6720 l 6487 6779 l 6383 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6720 m 6487 6780 l 6383 6839 l 6279 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6780 m 6383 6840 l 6279 6899 l 6175 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6840 m 6279 6900 l 6175 6959 l 6071 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 6900 m 6175 6960 l 6071 7019 l 5967 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 6960 m 6071 7020 l 5967 7079 l 5863 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 7020 m 5967 7080 l 5863 7139 l 5760 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 7080 m 5863 7140 l 5760 7199 l 5657 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 7140 m 5760 7200 l 5657 7259 l 5553 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 7200 m 5657 7260 l 5553 7319 l 5449 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 7260 m 5553 7320 l 5449 7379 l 5345 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5345 7320 m 5449 7380 l 5345 7439 l 5241 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6480 m 7110 6540 l 7007 6599 l 6903 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6540 m 7007 6600 l 6903 6659 l 6799 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6600 m 6903 6660 l 6799 6719 l 6695 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6660 m 6799 6720 l 6695 6779 l 6591 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6720 m 6695 6780 l 6591 6839 l 6487 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6780 m 6591 6840 l 6487 6899 l 6383 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6840 m 6487 6900 l 6383 6959 l 6279 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 6900 m 6383 6960 l 6279 7019 l 6175 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 6960 m 6279 7020 l 6175 7079 l 6071 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 7020 m 6175 7080 l 6071 7139 l 5967 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 7080 m 6071 7140 l 5967 7199 l 5863 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 7140 m 5967 7200 l 5863 7259 l 5760 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 7200 m 5863 7260 l 5760 7319 l 5657 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 7260 m 5760 7320 l 5657 7379 l 5553 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 7320 m 5657 7380 l 5553 7439 l 5449 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5449 7380 m 5553 7440 l 5449 7499 l 5345 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6540 m 7214 6600 l 7110 6659 l 7007 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6600 m 7110 6660 l 7007 6719 l 6903 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6660 m 7007 6720 l 6903 6779 l 6799 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6720 m 6903 6780 l 6799 6839 l 6695 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6780 m 6799 6840 l 6695 6899 l 6591 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6840 m 6695 6900 l 6591 6959 l 6487 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 6900 m 6591 6960 l 6487 7019 l 6383 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 6960 m 6487 7020 l 6383 7079 l 6279 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 7020 m 6383 7080 l 6279 7139 l 6175 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 7080 m 6279 7140 l 6175 7199 l 6071 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 7140 m 6175 7200 l 6071 7259 l 5967 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 7200 m 6071 7260 l 5967 7319 l 5863 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 7260 m 5967 7320 l 5863 7379 l 5760 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 7320 m 5863 7380 l 5760 7439 l 5657 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 7380 m 5760 7440 l 5657 7499 l 5553 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5553 7440 m 5657 7500 l 5553 7559 l 5449 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6600 m 7318 6660 l 7214 6719 l 7110 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6660 m 7214 6720 l 7110 6779 l 7007 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6720 m 7110 6780 l 7007 6839 l 6903 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6780 m 7007 6840 l 6903 6899 l 6799 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6840 m 6903 6900 l 6799 6959 l 6695 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 6900 m 6799 6960 l 6695 7019 l 6591 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 6960 m 6695 7020 l 6591 7079 l 6487 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 7020 m 6591 7080 l 6487 7139 l 6383 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 7080 m 6487 7140 l 6383 7199 l 6279 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 7140 m 6383 7200 l 6279 7259 l 6175 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 7200 m 6279 7260 l 6175 7319 l 6071 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 7260 m 6175 7320 l 6071 7379 l 5967 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 7320 m 6071 7380 l 5967 7439 l 5863 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 7380 m 5967 7440 l 5863 7499 l 5760 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 7440 m 5863 7500 l 5760 7559 l 5657 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5657 7500 m 5760 7560 l 5657 7619 l 5553 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7318 6660 m 7422 6720 l 7318 6779 l 7214 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7214 6720 m 7318 6780 l 7214 6839 l 7110 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7110 6780 m 7214 6840 l 7110 6899 l 7007 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 7007 6840 m 7110 6900 l 7007 6959 l 6903 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6903 6900 m 7007 6960 l 6903 7019 l 6799 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6799 6960 m 6903 7020 l 6799 7079 l 6695 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6695 7020 m 6799 7080 l 6695 7139 l 6591 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6591 7080 m 6695 7140 l 6591 7199 l 6487 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6487 7140 m 6591 7200 l 6487 7259 l 6383 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6383 7200 m 6487 7260 l 6383 7319 l 6279 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6279 7260 m 6383 7320 l 6279 7379 l 6175 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6175 7320 m 6279 7380 l 6175 7439 l 6071 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 6071 7380 m 6175 7440 l 6071 7499 l 5967 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5967 7440 m 6071 7500 l 5967 7559 l 5863 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5863 7500 m 5967 7560 l 5863 7619 l 5760 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 5760 7560 m 5863 7620 l 5760 7679 l 5657 7619 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5880 m 9703 5939 l 9703 5819 l 9807 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9703 5700 m 9600 5760 l 9600 5640 l 9703 5581 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9600 5520 m 9497 5580 l 9497 5460 l 9600 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5400 m 9497 5460 l 9497 5340 l 9600 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5280 m 9497 5340 l 9497 5220 l 9600 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5160 m 9497 5220 l 9497 5100 l 9600 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5040 m 9497 5100 l 9497 4980 l 9600 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4920 m 9497 4980 l 9497 4860 l 9600 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4800 m 9497 4860 l 9497 4740 l 9600 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4680 m 9497 4740 l 9497 4620 l 9600 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4560 m 9497 4620 l 9497 4500 l 9600 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4440 m 9497 4500 l 9497 4380 l 9600 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4320 m 9497 4380 l 9497 4260 l 9600 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4200 m 9497 4260 l 9497 4140 l 9600 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4080 m 9497 4140 l 9497 4020 l 9600 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3960 m 9497 4020 l 9497 3900 l 9600 3841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5940 m 9600 5999 l 9600 5879 l 9703 5820 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9600 5760 m 9497 5819 l 9497 5700 l 9600 5641 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9497 5580 m 9393 5640 l 9393 5520 l 9497 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 5460 m 9393 5520 l 9393 5400 l 9497 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 5340 m 9393 5400 l 9393 5280 l 9497 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 5220 m 9393 5280 l 9393 5160 l 9497 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 5100 m 9393 5160 l 9393 5040 l 9497 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4980 m 9393 5040 l 9393 4920 l 9497 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4860 m 9393 4920 l 9393 4800 l 9497 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4740 m 9393 4800 l 9393 4680 l 9497 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4620 m 9393 4680 l 9393 4560 l 9497 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4500 m 9393 4560 l 9393 4440 l 9497 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4380 m 9393 4440 l 9393 4320 l 9497 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4260 m 9393 4320 l 9393 4200 l 9497 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4140 m 9393 4200 l 9393 4080 l 9497 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 4020 m 9393 4080 l 9393 3960 l 9497 3901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6000 m 9497 6059 l 9497 5939 l 9600 5880 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9393 5760 m 9289 5819 l 9289 5700 l 9393 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5640 m 9289 5700 l 9289 5580 l 9393 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5520 m 9289 5580 l 9289 5460 l 9393 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5400 m 9289 5460 l 9289 5340 l 9393 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5280 m 9289 5340 l 9289 5220 l 9393 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5160 m 9289 5220 l 9289 5100 l 9393 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 5040 m 9289 5100 l 9289 4980 l 9393 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4920 m 9289 4980 l 9289 4860 l 9393 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4800 m 9289 4860 l 9289 4740 l 9393 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4680 m 9289 4740 l 9289 4620 l 9393 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4560 m 9289 4620 l 9289 4500 l 9393 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4440 m 9289 4500 l 9289 4380 l 9393 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4320 m 9289 4380 l 9289 4260 l 9393 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4200 m 9289 4260 l 9289 4140 l 9393 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 4080 m 9289 4140 l 9289 4020 l 9393 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6060 m 9393 6119 l 9393 5999 l 9497 5940 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9289 5820 m 9185 5879 l 9185 5760 l 9289 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5700 m 9185 5760 l 9185 5640 l 9289 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5580 m 9185 5640 l 9185 5520 l 9289 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5460 m 9185 5520 l 9185 5400 l 9289 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5340 m 9185 5400 l 9185 5280 l 9289 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5220 m 9185 5280 l 9185 5160 l 9289 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 5100 m 9185 5160 l 9185 5040 l 9289 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4980 m 9185 5040 l 9185 4920 l 9289 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4860 m 9185 4920 l 9185 4800 l 9289 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4740 m 9185 4800 l 9185 4680 l 9289 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4620 m 9185 4680 l 9185 4560 l 9289 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4500 m 9185 4560 l 9185 4440 l 9289 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4380 m 9185 4440 l 9185 4320 l 9289 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4260 m 9185 4320 l 9185 4200 l 9289 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 4140 m 9185 4200 l 9185 4080 l 9289 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6060 m 9185 6119 l 9185 5999 l 9289 5940 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9185 5880 m 9081 5939 l 9081 5819 l 9185 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5760 m 9081 5819 l 9081 5700 l 9185 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5640 m 9081 5700 l 9081 5580 l 9185 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5520 m 9081 5580 l 9081 5460 l 9185 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5400 m 9081 5460 l 9081 5340 l 9185 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5280 m 9081 5340 l 9081 5220 l 9185 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5160 m 9081 5220 l 9081 5100 l 9185 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 5040 m 9081 5100 l 9081 4980 l 9185 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4920 m 9081 4980 l 9081 4860 l 9185 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4800 m 9081 4860 l 9081 4740 l 9185 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4680 m 9081 4740 l 9081 4620 l 9185 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4560 m 9081 4620 l 9081 4500 l 9185 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4440 m 9081 4500 l 9081 4380 l 9185 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4320 m 9081 4380 l 9081 4260 l 9185 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 4200 m 9081 4260 l 9081 4140 l 9185 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6120 m 9081 6179 l 9081 6059 l 9185 6000 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 9081 5940 m 8977 5999 l 8977 5879 l 9081 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5820 m 8977 5879 l 8977 5760 l 9081 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5700 m 8977 5760 l 8977 5640 l 9081 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5580 m 8977 5640 l 8977 5520 l 9081 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5460 m 8977 5520 l 8977 5400 l 9081 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5340 m 8977 5400 l 8977 5280 l 9081 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5220 m 8977 5280 l 8977 5160 l 9081 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 5100 m 8977 5160 l 8977 5040 l 9081 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4980 m 8977 5040 l 8977 4920 l 9081 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4860 m 8977 4920 l 8977 4800 l 9081 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4740 m 8977 4800 l 8977 4680 l 9081 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4620 m 8977 4680 l 8977 4560 l 9081 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4500 m 8977 4560 l 8977 4440 l 9081 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4380 m 8977 4440 l 8977 4320 l 9081 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 4260 m 8977 4320 l 8977 4200 l 9081 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6180 m 8977 6239 l 8977 6119 l 9081 6060 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 8977 6000 m 8873 6059 l 8873 5939 l 8977 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5880 m 8873 5939 l 8873 5819 l 8977 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5760 m 8873 5819 l 8873 5700 l 8977 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5640 m 8873 5700 l 8873 5580 l 8977 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5520 m 8873 5580 l 8873 5460 l 8977 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5400 m 8873 5460 l 8873 5340 l 8977 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5280 m 8873 5340 l 8873 5220 l 8977 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5160 m 8873 5220 l 8873 5100 l 8977 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 5040 m 8873 5100 l 8873 4980 l 8977 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4920 m 8873 4980 l 8873 4860 l 8977 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4800 m 8873 4860 l 8873 4740 l 8977 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4680 m 8873 4740 l 8873 4620 l 8977 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4560 m 8873 4620 l 8873 4500 l 8977 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4440 m 8873 4500 l 8873 4380 l 8977 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 4320 m 8873 4380 l 8873 4260 l 8977 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6240 m 8873 6299 l 8873 6179 l 8977 6120 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 8873 6060 m 8769 6119 l 8769 5999 l 8873 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5940 m 8769 5999 l 8769 5879 l 8873 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5820 m 8769 5879 l 8769 5760 l 8873 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5700 m 8769 5760 l 8769 5640 l 8873 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5580 m 8769 5640 l 8769 5520 l 8873 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5460 m 8769 5520 l 8769 5400 l 8873 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5340 m 8769 5400 l 8769 5280 l 8873 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5220 m 8769 5280 l 8769 5160 l 8873 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 5100 m 8769 5160 l 8769 5040 l 8873 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4980 m 8769 5040 l 8769 4920 l 8873 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4860 m 8769 4920 l 8769 4800 l 8873 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4740 m 8769 4800 l 8769 4680 l 8873 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4620 m 8769 4680 l 8769 4560 l 8873 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4500 m 8769 4560 l 8769 4440 l 8873 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 4380 m 8769 4440 l 8769 4320 l 8873 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6300 m 8769 6359 l 8769 6239 l 8873 6180 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 8769 6120 m 8665 6179 l 8665 6059 l 8769 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6000 m 8665 6059 l 8665 5939 l 8769 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5880 m 8665 5939 l 8665 5819 l 8769 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5760 m 8665 5819 l 8665 5700 l 8769 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5640 m 8665 5700 l 8665 5580 l 8769 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5520 m 8665 5580 l 8665 5460 l 8769 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5400 m 8665 5460 l 8665 5340 l 8769 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5280 m 8665 5340 l 8665 5220 l 8769 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5160 m 8665 5220 l 8665 5100 l 8769 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 5040 m 8665 5100 l 8665 4980 l 8769 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 4920 m 8665 4980 l 8665 4860 l 8769 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 4800 m 8665 4860 l 8665 4740 l 8769 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 4680 m 8665 4740 l 8665 4620 l 8769 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 4560 m 8665 4620 l 8665 4500 l 8769 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 4440 m 8665 4500 l 8665 4380 l 8769 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6300 m 8561 6359 l 8561 6239 l 8665 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6180 m 8561 6239 l 8561 6119 l 8665 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6060 m 8561 6119 l 8561 5999 l 8665 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5940 m 8561 5999 l 8561 5879 l 8665 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5820 m 8561 5879 l 8561 5760 l 8665 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5700 m 8561 5760 l 8561 5640 l 8665 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5580 m 8561 5640 l 8561 5520 l 8665 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5460 m 8561 5520 l 8561 5400 l 8665 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5340 m 8561 5400 l 8561 5280 l 8665 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5220 m 8561 5280 l 8561 5160 l 8665 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 5100 m 8561 5160 l 8561 5040 l 8665 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 4980 m 8561 5040 l 8561 4920 l 8665 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 4860 m 8561 4920 l 8561 4800 l 8665 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 4740 m 8561 4800 l 8561 4680 l 8665 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 4620 m 8561 4680 l 8561 4560 l 8665 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 4500 m 8561 4560 l 8561 4440 l 8665 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6360 m 8457 6419 l 8457 6299 l 8561 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6240 m 8457 6299 l 8457 6179 l 8561 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6120 m 8457 6179 l 8457 6059 l 8561 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6000 m 8457 6059 l 8457 5939 l 8561 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5880 m 8457 5939 l 8457 5819 l 8561 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5760 m 8457 5819 l 8457 5700 l 8561 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5640 m 8457 5700 l 8457 5580 l 8561 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5520 m 8457 5580 l 8457 5460 l 8561 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5400 m 8457 5460 l 8457 5340 l 8561 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5280 m 8457 5340 l 8457 5220 l 8561 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5160 m 8457 5220 l 8457 5100 l 8561 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 5040 m 8457 5100 l 8457 4980 l 8561 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 4920 m 8457 4980 l 8457 4860 l 8561 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 4800 m 8457 4860 l 8457 4740 l 8561 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 4680 m 8457 4740 l 8457 4620 l 8561 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 4560 m 8457 4620 l 8457 4500 l 8561 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6420 m 8353 6479 l 8353 6359 l 8457 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6300 m 8353 6359 l 8353 6239 l 8457 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6180 m 8353 6239 l 8353 6119 l 8457 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6060 m 8353 6119 l 8353 5999 l 8457 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5940 m 8353 5999 l 8353 5879 l 8457 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5820 m 8353 5879 l 8353 5760 l 8457 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5700 m 8353 5760 l 8353 5640 l 8457 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5580 m 8353 5640 l 8353 5520 l 8457 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5460 m 8353 5520 l 8353 5400 l 8457 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5340 m 8353 5400 l 8353 5280 l 8457 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5220 m 8353 5280 l 8353 5160 l 8457 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 5100 m 8353 5160 l 8353 5040 l 8457 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 4980 m 8353 5040 l 8353 4920 l 8457 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 4860 m 8353 4920 l 8353 4800 l 8457 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 4740 m 8353 4800 l 8353 4680 l 8457 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 4620 m 8353 4680 l 8353 4560 l 8457 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6480 m 8250 6539 l 8250 6419 l 8353 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6360 m 8250 6419 l 8250 6299 l 8353 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6240 m 8250 6299 l 8250 6179 l 8353 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6120 m 8250 6179 l 8250 6059 l 8353 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6000 m 8250 6059 l 8250 5939 l 8353 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5880 m 8250 5939 l 8250 5819 l 8353 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5760 m 8250 5819 l 8250 5700 l 8353 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5640 m 8250 5700 l 8250 5580 l 8353 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5520 m 8250 5580 l 8250 5460 l 8353 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5400 m 8250 5460 l 8250 5340 l 8353 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5280 m 8250 5340 l 8250 5220 l 8353 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5160 m 8250 5220 l 8250 5100 l 8353 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 5040 m 8250 5100 l 8250 4980 l 8353 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 4920 m 8250 4980 l 8250 4860 l 8353 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 4800 m 8250 4860 l 8250 4740 l 8353 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 4680 m 8250 4740 l 8250 4620 l 8353 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6540 m 8146 6599 l 8146 6479 l 8250 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6420 m 8146 6479 l 8146 6359 l 8250 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6300 m 8146 6359 l 8146 6239 l 8250 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6180 m 8146 6239 l 8146 6119 l 8250 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6060 m 8146 6119 l 8146 5999 l 8250 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5940 m 8146 5999 l 8146 5879 l 8250 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5820 m 8146 5879 l 8146 5760 l 8250 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5700 m 8146 5760 l 8146 5640 l 8250 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5580 m 8146 5640 l 8146 5520 l 8250 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5460 m 8146 5520 l 8146 5400 l 8250 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5340 m 8146 5400 l 8146 5280 l 8250 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5220 m 8146 5280 l 8146 5160 l 8250 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 5100 m 8146 5160 l 8146 5040 l 8250 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 4980 m 8146 5040 l 8146 4920 l 8250 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 4860 m 8146 4920 l 8146 4800 l 8250 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 4740 m 8146 4800 l 8146 4680 l 8250 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6600 m 8042 6659 l 8042 6539 l 8146 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6480 m 8042 6539 l 8042 6419 l 8146 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6360 m 8042 6419 l 8042 6299 l 8146 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6240 m 8042 6299 l 8042 6179 l 8146 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6120 m 8042 6179 l 8042 6059 l 8146 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6000 m 8042 6059 l 8042 5939 l 8146 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5880 m 8042 5939 l 8042 5819 l 8146 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5760 m 8042 5819 l 8042 5700 l 8146 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5640 m 8042 5700 l 8042 5580 l 8146 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5520 m 8042 5580 l 8042 5460 l 8146 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5400 m 8042 5460 l 8042 5340 l 8146 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5280 m 8042 5340 l 8042 5220 l 8146 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5160 m 8042 5220 l 8042 5100 l 8146 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 5040 m 8042 5100 l 8042 4980 l 8146 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 4920 m 8042 4980 l 8042 4860 l 8146 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 4800 m 8042 4860 l 8042 4740 l 8146 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6660 m 7938 6719 l 7938 6599 l 8042 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6540 m 7938 6599 l 7938 6479 l 8042 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6420 m 7938 6479 l 7938 6359 l 8042 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6300 m 7938 6359 l 7938 6239 l 8042 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6180 m 7938 6239 l 7938 6119 l 8042 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6060 m 7938 6119 l 7938 5999 l 8042 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5940 m 7938 5999 l 7938 5879 l 8042 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5820 m 7938 5879 l 7938 5760 l 8042 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5700 m 7938 5760 l 7938 5640 l 8042 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5580 m 7938 5640 l 7938 5520 l 8042 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5460 m 7938 5520 l 7938 5400 l 8042 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5340 m 7938 5400 l 7938 5280 l 8042 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5220 m 7938 5280 l 7938 5160 l 8042 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 5100 m 7938 5160 l 7938 5040 l 8042 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 4980 m 7938 5040 l 7938 4920 l 8042 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 4860 m 7938 4920 l 7938 4800 l 8042 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6300 m 8665 6180 l 8769 6240 l 8769 6360 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9393 5760 m 9393 5640 l 9497 5701 l 9497 5820 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9600 5520 m 9600 5400 l 9703 5461 l 9703 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5400 m 9600 5280 l 9703 5341 l 9703 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5280 m 9600 5160 l 9703 5221 l 9703 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5160 m 9600 5040 l 9703 5101 l 9703 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5040 m 9600 4920 l 9703 4981 l 9703 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4920 m 9600 4800 l 9703 4861 l 9703 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4800 m 9600 4680 l 9703 4741 l 9703 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4680 m 9600 4560 l 9703 4621 l 9703 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4560 m 9600 4440 l 9703 4501 l 9703 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4440 m 9600 4320 l 9703 4381 l 9703 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4320 m 9600 4200 l 9703 4261 l 9703 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4200 m 9600 4080 l 9703 4141 l 9703 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 4080 m 9600 3960 l 9703 4021 l 9703 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 3960 m 9600 3840 l 9703 3901 l 9703 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6060 m 9289 5940 l 9393 6000 l 9393 6120 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 9703 5700 m 9703 5580 l 9807 5641 l 9807 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5580 m 9703 5460 l 9807 5521 l 9807 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5460 m 9703 5340 l 9807 5401 l 9807 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5340 m 9703 5220 l 9807 5281 l 9807 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5220 m 9703 5100 l 9807 5161 l 9807 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5100 m 9703 4980 l 9807 5041 l 9807 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4980 m 9703 4860 l 9807 4921 l 9807 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4860 m 9703 4740 l 9807 4801 l 9807 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4740 m 9703 4620 l 9807 4681 l 9807 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4620 m 9703 4500 l 9807 4561 l 9807 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4500 m 9703 4380 l 9807 4441 l 9807 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4380 m 9703 4260 l 9807 4321 l 9807 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4260 m 9703 4140 l 9807 4201 l 9807 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4140 m 9703 4020 l 9807 4081 l 9807 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 4020 m 9703 3900 l 9807 3961 l 9807 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5880 m 9807 5760 l 9911 5820 l 9911 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5760 m 9807 5640 l 9911 5701 l 9911 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5640 m 9807 5520 l 9911 5581 l 9911 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5520 m 9807 5400 l 9911 5461 l 9911 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5400 m 9807 5280 l 9911 5341 l 9911 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5280 m 9807 5160 l 9911 5221 l 9911 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5160 m 9807 5040 l 9911 5101 l 9911 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5040 m 9807 4920 l 9911 4981 l 9911 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4920 m 9807 4800 l 9911 4861 l 9911 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4800 m 9807 4680 l 9911 4741 l 9911 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4680 m 9807 4560 l 9911 4621 l 9911 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4560 m 9807 4440 l 9911 4501 l 9911 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4440 m 9807 4320 l 9911 4381 l 9911 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4320 m 9807 4200 l 9911 4261 l 9911 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4200 m 9807 4080 l 9911 4141 l 9911 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 4080 m 9807 3960 l 9911 4021 l 9911 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5940 m 9911 5820 l 10015 5880 l 10015 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5820 m 9911 5700 l 10015 5760 l 10015 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5700 m 9911 5580 l 10015 5641 l 10015 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5580 m 9911 5460 l 10015 5521 l 10015 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5460 m 9911 5340 l 10015 5401 l 10015 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5340 m 9911 5220 l 10015 5281 l 10015 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5220 m 9911 5100 l 10015 5161 l 10015 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5100 m 9911 4980 l 10015 5041 l 10015 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4980 m 9911 4860 l 10015 4921 l 10015 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4860 m 9911 4740 l 10015 4801 l 10015 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4740 m 9911 4620 l 10015 4681 l 10015 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4620 m 9911 4500 l 10015 4561 l 10015 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4500 m 9911 4380 l 10015 4441 l 10015 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4380 m 9911 4260 l 10015 4321 l 10015 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4260 m 9911 4140 l 10015 4201 l 10015 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 4140 m 9911 4020 l 10015 4081 l 10015 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6000 m 10015 5880 l 10119 5940 l 10119 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5880 m 10015 5760 l 10119 5820 l 10119 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5760 m 10015 5640 l 10119 5701 l 10119 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5640 m 10015 5520 l 10119 5581 l 10119 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5520 m 10015 5400 l 10119 5461 l 10119 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5400 m 10015 5280 l 10119 5341 l 10119 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5280 m 10015 5160 l 10119 5221 l 10119 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5160 m 10015 5040 l 10119 5101 l 10119 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 5040 m 10015 4920 l 10119 4981 l 10119 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4920 m 10015 4800 l 10119 4861 l 10119 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4800 m 10015 4680 l 10119 4741 l 10119 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4680 m 10015 4560 l 10119 4621 l 10119 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4560 m 10015 4440 l 10119 4501 l 10119 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4440 m 10015 4320 l 10119 4381 l 10119 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4320 m 10015 4200 l 10119 4261 l 10119 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 4200 m 10015 4080 l 10119 4141 l 10119 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6060 m 10119 5940 l 10223 6000 l 10223 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5940 m 10119 5820 l 10223 5880 l 10223 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5820 m 10119 5700 l 10223 5760 l 10223 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5700 m 10119 5580 l 10223 5641 l 10223 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5580 m 10119 5460 l 10223 5521 l 10223 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5460 m 10119 5340 l 10223 5401 l 10223 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5340 m 10119 5220 l 10223 5281 l 10223 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5220 m 10119 5100 l 10223 5161 l 10223 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 5100 m 10119 4980 l 10223 5041 l 10223 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4980 m 10119 4860 l 10223 4921 l 10223 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4860 m 10119 4740 l 10223 4801 l 10223 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4740 m 10119 4620 l 10223 4681 l 10223 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4620 m 10119 4500 l 10223 4561 l 10223 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4500 m 10119 4380 l 10223 4441 l 10223 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4380 m 10119 4260 l 10223 4321 l 10223 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 4260 m 10119 4140 l 10223 4201 l 10223 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6120 m 10223 6000 l 10327 6060 l 10327 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6000 m 10223 5880 l 10327 5940 l 10327 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5880 m 10223 5760 l 10327 5820 l 10327 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5760 m 10223 5640 l 10327 5701 l 10327 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5640 m 10223 5520 l 10327 5581 l 10327 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5520 m 10223 5400 l 10327 5461 l 10327 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5400 m 10223 5280 l 10327 5341 l 10327 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5280 m 10223 5160 l 10327 5221 l 10327 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5160 m 10223 5040 l 10327 5101 l 10327 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 5040 m 10223 4920 l 10327 4981 l 10327 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4920 m 10223 4800 l 10327 4861 l 10327 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4800 m 10223 4680 l 10327 4741 l 10327 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4680 m 10223 4560 l 10327 4621 l 10327 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4560 m 10223 4440 l 10327 4501 l 10327 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4440 m 10223 4320 l 10327 4381 l 10327 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 4320 m 10223 4200 l 10327 4261 l 10327 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6180 m 10327 6060 l 10431 6120 l 10431 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6060 m 10327 5940 l 10431 6000 l 10431 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5940 m 10327 5820 l 10431 5880 l 10431 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5820 m 10327 5700 l 10431 5760 l 10431 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5700 m 10327 5580 l 10431 5641 l 10431 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5580 m 10327 5460 l 10431 5521 l 10431 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5460 m 10327 5340 l 10431 5401 l 10431 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5340 m 10327 5220 l 10431 5281 l 10431 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5220 m 10327 5100 l 10431 5161 l 10431 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 5100 m 10327 4980 l 10431 5041 l 10431 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4980 m 10327 4860 l 10431 4921 l 10431 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4860 m 10327 4740 l 10431 4801 l 10431 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4740 m 10327 4620 l 10431 4681 l 10431 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4620 m 10327 4500 l 10431 4561 l 10431 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4500 m 10327 4380 l 10431 4441 l 10431 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 4380 m 10327 4260 l 10431 4321 l 10431 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6240 m 10431 6120 l 10535 6180 l 10535 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6120 m 10431 6000 l 10535 6060 l 10535 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6000 m 10431 5880 l 10535 5940 l 10535 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5880 m 10431 5760 l 10535 5820 l 10535 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5760 m 10431 5640 l 10535 5701 l 10535 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5640 m 10431 5520 l 10535 5581 l 10535 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5520 m 10431 5400 l 10535 5461 l 10535 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5400 m 10431 5280 l 10535 5341 l 10535 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5280 m 10431 5160 l 10535 5221 l 10535 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5160 m 10431 5040 l 10535 5101 l 10535 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 5040 m 10431 4920 l 10535 4981 l 10535 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 4920 m 10431 4800 l 10535 4861 l 10535 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 4800 m 10431 4680 l 10535 4741 l 10535 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 4680 m 10431 4560 l 10535 4621 l 10535 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 4560 m 10431 4440 l 10535 4501 l 10535 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 4440 m 10431 4320 l 10535 4381 l 10535 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6300 m 10535 6180 l 10639 6240 l 10639 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6180 m 10535 6060 l 10639 6120 l 10639 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6060 m 10535 5940 l 10639 6000 l 10639 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5940 m 10535 5820 l 10639 5880 l 10639 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5820 m 10535 5700 l 10639 5760 l 10639 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5700 m 10535 5580 l 10639 5641 l 10639 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5580 m 10535 5460 l 10639 5521 l 10639 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5460 m 10535 5340 l 10639 5401 l 10639 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5340 m 10535 5220 l 10639 5281 l 10639 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5220 m 10535 5100 l 10639 5161 l 10639 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 5100 m 10535 4980 l 10639 5041 l 10639 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 4980 m 10535 4860 l 10639 4921 l 10639 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 4860 m 10535 4740 l 10639 4801 l 10639 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 4740 m 10535 4620 l 10639 4681 l 10639 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 4620 m 10535 4500 l 10639 4561 l 10639 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 4500 m 10535 4380 l 10639 4441 l 10639 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6360 m 10639 6240 l 10743 6300 l 10743 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6240 m 10639 6120 l 10743 6180 l 10743 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6120 m 10639 6000 l 10743 6060 l 10743 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6000 m 10639 5880 l 10743 5940 l 10743 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5880 m 10639 5760 l 10743 5820 l 10743 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5760 m 10639 5640 l 10743 5701 l 10743 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5640 m 10639 5520 l 10743 5581 l 10743 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5520 m 10639 5400 l 10743 5461 l 10743 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5400 m 10639 5280 l 10743 5341 l 10743 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5280 m 10639 5160 l 10743 5221 l 10743 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5160 m 10639 5040 l 10743 5101 l 10743 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 5040 m 10639 4920 l 10743 4981 l 10743 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 4920 m 10639 4800 l 10743 4861 l 10743 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 4800 m 10639 4680 l 10743 4741 l 10743 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 4680 m 10639 4560 l 10743 4621 l 10743 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 4560 m 10639 4440 l 10743 4501 l 10743 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6420 m 10743 6300 l 10847 6360 l 10847 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6300 m 10743 6180 l 10847 6240 l 10847 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6180 m 10743 6060 l 10847 6120 l 10847 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6060 m 10743 5940 l 10847 6000 l 10847 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5940 m 10743 5820 l 10847 5880 l 10847 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5820 m 10743 5700 l 10847 5760 l 10847 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5700 m 10743 5580 l 10847 5641 l 10847 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5580 m 10743 5460 l 10847 5521 l 10847 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5460 m 10743 5340 l 10847 5401 l 10847 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5340 m 10743 5220 l 10847 5281 l 10847 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5220 m 10743 5100 l 10847 5161 l 10847 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 5100 m 10743 4980 l 10847 5041 l 10847 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 4980 m 10743 4860 l 10847 4921 l 10847 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 4860 m 10743 4740 l 10847 4801 l 10847 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 4740 m 10743 4620 l 10847 4681 l 10847 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 4620 m 10743 4500 l 10847 4561 l 10847 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6480 m 10847 6360 l 10950 6420 l 10950 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6360 m 10847 6240 l 10950 6300 l 10950 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6240 m 10847 6120 l 10950 6180 l 10950 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6120 m 10847 6000 l 10950 6060 l 10950 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6000 m 10847 5880 l 10950 5940 l 10950 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5880 m 10847 5760 l 10950 5820 l 10950 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5760 m 10847 5640 l 10950 5701 l 10950 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5640 m 10847 5520 l 10950 5581 l 10950 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5520 m 10847 5400 l 10950 5461 l 10950 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5400 m 10847 5280 l 10950 5341 l 10950 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5280 m 10847 5160 l 10950 5221 l 10950 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5160 m 10847 5040 l 10950 5101 l 10950 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 5040 m 10847 4920 l 10950 4981 l 10950 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 4920 m 10847 4800 l 10950 4861 l 10950 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 4800 m 10847 4680 l 10950 4741 l 10950 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 4680 m 10847 4560 l 10950 4621 l 10950 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6540 m 10950 6420 l 11054 6480 l 11054 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6420 m 10950 6300 l 11054 6360 l 11054 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6300 m 10950 6180 l 11054 6240 l 11054 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6180 m 10950 6060 l 11054 6120 l 11054 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6060 m 10950 5940 l 11054 6000 l 11054 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5940 m 10950 5820 l 11054 5880 l 11054 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5820 m 10950 5700 l 11054 5760 l 11054 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5700 m 10950 5580 l 11054 5641 l 11054 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5580 m 10950 5460 l 11054 5521 l 11054 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5460 m 10950 5340 l 11054 5401 l 11054 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5340 m 10950 5220 l 11054 5281 l 11054 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5220 m 10950 5100 l 11054 5161 l 11054 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 5100 m 10950 4980 l 11054 5041 l 11054 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 4980 m 10950 4860 l 11054 4921 l 11054 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 4860 m 10950 4740 l 11054 4801 l 11054 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 4740 m 10950 4620 l 11054 4681 l 11054 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6600 m 11054 6480 l 11158 6540 l 11158 6660 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6480 m 11054 6360 l 11158 6420 l 11158 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6360 m 11054 6240 l 11158 6300 l 11158 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6240 m 11054 6120 l 11158 6180 l 11158 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6120 m 11054 6000 l 11158 6060 l 11158 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6000 m 11054 5880 l 11158 5940 l 11158 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5880 m 11054 5760 l 11158 5820 l 11158 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5760 m 11054 5640 l 11158 5701 l 11158 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5640 m 11054 5520 l 11158 5581 l 11158 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5520 m 11054 5400 l 11158 5461 l 11158 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5400 m 11054 5280 l 11158 5341 l 11158 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5280 m 11054 5160 l 11158 5221 l 11158 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5160 m 11054 5040 l 11158 5101 l 11158 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 5040 m 11054 4920 l 11158 4981 l 11158 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 4920 m 11054 4800 l 11158 4861 l 11158 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 4800 m 11054 4680 l 11158 4741 l 11158 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6660 m 11158 6540 l 11262 6600 l 11262 6720 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6540 m 11158 6420 l 11262 6480 l 11262 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6420 m 11158 6300 l 11262 6360 l 11262 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6300 m 11158 6180 l 11262 6240 l 11262 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6180 m 11158 6060 l 11262 6120 l 11262 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6060 m 11158 5940 l 11262 6000 l 11262 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5940 m 11158 5820 l 11262 5880 l 11262 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5820 m 11158 5700 l 11262 5760 l 11262 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5700 m 11158 5580 l 11262 5641 l 11262 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5580 m 11158 5460 l 11262 5521 l 11262 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5460 m 11158 5340 l 11262 5401 l 11262 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5340 m 11158 5220 l 11262 5281 l 11262 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5220 m 11158 5100 l 11262 5161 l 11262 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 5100 m 11158 4980 l 11262 5041 l 11262 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 4980 m 11158 4860 l 11262 4921 l 11262 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 4860 m 11158 4740 l 11262 4801 l 11262 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 5520 m 9703 5581 l 9600 5640 l 9497 5580 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9497 5580 m 9600 5641 l 9497 5700 l 9393 5640 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9393 5760 m 9497 5820 l 9393 5879 l 9289 5819 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9289 5820 m 9393 5880 l 9289 5939 l 9185 5879 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9185 5880 m 9289 5940 l 9185 5999 l 9081 5939 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9081 5940 m 9185 6000 l 9081 6059 l 8977 5999 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 8977 6000 m 9081 6060 l 8977 6119 l 8873 6059 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 8873 6060 m 8977 6120 l 8873 6179 l 8769 6119 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 8769 6120 m 8873 6180 l 8769 6239 l 8665 6179 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 8665 6300 m 8769 6360 l 8665 6419 l 8561 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6360 m 8665 6420 l 8561 6479 l 8457 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6420 m 8561 6480 l 8457 6539 l 8353 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6480 m 8457 6540 l 8353 6599 l 8250 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6540 m 8353 6600 l 8250 6659 l 8146 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6600 m 8250 6660 l 8146 6719 l 8042 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8042 6660 m 8146 6720 l 8042 6779 l 7938 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5700 m 9807 5760 l 9703 5819 l 9600 5760 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9600 5760 m 9703 5820 l 9600 5879 l 9497 5819 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9497 5820 m 9600 5880 l 9497 5939 l 9393 5879 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9393 5880 m 9497 5940 l 9393 5999 l 9289 5939 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 9289 6060 m 9393 6120 l 9289 6179 l 9185 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6120 m 9289 6180 l 9185 6239 l 9081 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6180 m 9185 6240 l 9081 6299 l 8977 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6240 m 9081 6300 l 8977 6359 l 8873 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6300 m 8977 6360 l 8873 6419 l 8769 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6360 m 8873 6420 l 8769 6479 l 8665 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6420 m 8769 6480 l 8665 6539 l 8561 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6480 m 8665 6540 l 8561 6599 l 8457 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6540 m 8561 6600 l 8457 6659 l 8353 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6600 m 8457 6660 l 8353 6719 l 8250 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6660 m 8353 6720 l 8250 6779 l 8146 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8146 6720 m 8250 6780 l 8146 6839 l 8042 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 5880 m 9911 5940 l 9807 5999 l 9703 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 5940 m 9807 6000 l 9703 6059 l 9600 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6000 m 9703 6060 l 9600 6119 l 9497 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6060 m 9600 6120 l 9497 6179 l 9393 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6120 m 9497 6180 l 9393 6239 l 9289 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6180 m 9393 6240 l 9289 6299 l 9185 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6240 m 9289 6300 l 9185 6359 l 9081 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6300 m 9185 6360 l 9081 6419 l 8977 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6360 m 9081 6420 l 8977 6479 l 8873 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6420 m 8977 6480 l 8873 6539 l 8769 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6480 m 8873 6540 l 8769 6599 l 8665 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6540 m 8769 6600 l 8665 6659 l 8561 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6600 m 8665 6660 l 8561 6719 l 8457 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6660 m 8561 6720 l 8457 6779 l 8353 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6720 m 8457 6780 l 8353 6839 l 8250 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8250 6780 m 8353 6840 l 8250 6899 l 8146 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 5940 m 10015 6000 l 9911 6059 l 9807 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6000 m 9911 6060 l 9807 6119 l 9703 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6060 m 9807 6120 l 9703 6179 l 9600 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6120 m 9703 6180 l 9600 6239 l 9497 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6180 m 9600 6240 l 9497 6299 l 9393 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6240 m 9497 6300 l 9393 6359 l 9289 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6300 m 9393 6360 l 9289 6419 l 9185 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6360 m 9289 6420 l 9185 6479 l 9081 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6420 m 9185 6480 l 9081 6539 l 8977 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6480 m 9081 6540 l 8977 6599 l 8873 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6540 m 8977 6600 l 8873 6659 l 8769 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6600 m 8873 6660 l 8769 6719 l 8665 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6660 m 8769 6720 l 8665 6779 l 8561 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6720 m 8665 6780 l 8561 6839 l 8457 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6780 m 8561 6840 l 8457 6899 l 8353 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8353 6840 m 8457 6900 l 8353 6959 l 8250 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6000 m 10119 6060 l 10015 6119 l 9911 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6060 m 10015 6120 l 9911 6179 l 9807 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6120 m 9911 6180 l 9807 6239 l 9703 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6180 m 9807 6240 l 9703 6299 l 9600 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6240 m 9703 6300 l 9600 6359 l 9497 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6300 m 9600 6360 l 9497 6419 l 9393 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6360 m 9497 6420 l 9393 6479 l 9289 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6420 m 9393 6480 l 9289 6539 l 9185 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6480 m 9289 6540 l 9185 6599 l 9081 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6540 m 9185 6600 l 9081 6659 l 8977 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6600 m 9081 6660 l 8977 6719 l 8873 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6660 m 8977 6720 l 8873 6779 l 8769 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6720 m 8873 6780 l 8769 6839 l 8665 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6780 m 8769 6840 l 8665 6899 l 8561 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6840 m 8665 6900 l 8561 6959 l 8457 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8457 6900 m 8561 6960 l 8457 7019 l 8353 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6060 m 10223 6120 l 10119 6179 l 10015 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6120 m 10119 6180 l 10015 6239 l 9911 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6180 m 10015 6240 l 9911 6299 l 9807 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6240 m 9911 6300 l 9807 6359 l 9703 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6300 m 9807 6360 l 9703 6419 l 9600 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6360 m 9703 6420 l 9600 6479 l 9497 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6420 m 9600 6480 l 9497 6539 l 9393 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6480 m 9497 6540 l 9393 6599 l 9289 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6540 m 9393 6600 l 9289 6659 l 9185 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6600 m 9289 6660 l 9185 6719 l 9081 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6660 m 9185 6720 l 9081 6779 l 8977 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6720 m 9081 6780 l 8977 6839 l 8873 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6780 m 8977 6840 l 8873 6899 l 8769 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6840 m 8873 6900 l 8769 6959 l 8665 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 6900 m 8769 6960 l 8665 7019 l 8561 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8561 6960 m 8665 7020 l 8561 7079 l 8457 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6120 m 10327 6180 l 10223 6239 l 10119 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6180 m 10223 6240 l 10119 6299 l 10015 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6240 m 10119 6300 l 10015 6359 l 9911 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6300 m 10015 6360 l 9911 6419 l 9807 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6360 m 9911 6420 l 9807 6479 l 9703 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6420 m 9807 6480 l 9703 6539 l 9600 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6480 m 9703 6540 l 9600 6599 l 9497 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6540 m 9600 6600 l 9497 6659 l 9393 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6600 m 9497 6660 l 9393 6719 l 9289 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6660 m 9393 6720 l 9289 6779 l 9185 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6720 m 9289 6780 l 9185 6839 l 9081 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6780 m 9185 6840 l 9081 6899 l 8977 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6840 m 9081 6900 l 8977 6959 l 8873 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 6900 m 8977 6960 l 8873 7019 l 8769 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 6960 m 8873 7020 l 8769 7079 l 8665 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8665 7020 m 8769 7080 l 8665 7139 l 8561 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6180 m 10431 6240 l 10327 6299 l 10223 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6240 m 10327 6300 l 10223 6359 l 10119 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6300 m 10223 6360 l 10119 6419 l 10015 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6360 m 10119 6420 l 10015 6479 l 9911 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6420 m 10015 6480 l 9911 6539 l 9807 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6480 m 9911 6540 l 9807 6599 l 9703 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6540 m 9807 6600 l 9703 6659 l 9600 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6600 m 9703 6660 l 9600 6719 l 9497 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6660 m 9600 6720 l 9497 6779 l 9393 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6720 m 9497 6780 l 9393 6839 l 9289 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6780 m 9393 6840 l 9289 6899 l 9185 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6840 m 9289 6900 l 9185 6959 l 9081 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 6900 m 9185 6960 l 9081 7019 l 8977 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 6960 m 9081 7020 l 8977 7079 l 8873 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 7020 m 8977 7080 l 8873 7139 l 8769 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8769 7080 m 8873 7140 l 8769 7199 l 8665 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6240 m 10535 6300 l 10431 6359 l 10327 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6300 m 10431 6360 l 10327 6419 l 10223 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6360 m 10327 6420 l 10223 6479 l 10119 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6420 m 10223 6480 l 10119 6539 l 10015 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6480 m 10119 6540 l 10015 6599 l 9911 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6540 m 10015 6600 l 9911 6659 l 9807 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6600 m 9911 6660 l 9807 6719 l 9703 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6660 m 9807 6720 l 9703 6779 l 9600 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6720 m 9703 6780 l 9600 6839 l 9497 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6780 m 9600 6840 l 9497 6899 l 9393 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6840 m 9497 6900 l 9393 6959 l 9289 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 6900 m 9393 6960 l 9289 7019 l 9185 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 6960 m 9289 7020 l 9185 7079 l 9081 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 7020 m 9185 7080 l 9081 7139 l 8977 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 7080 m 9081 7140 l 8977 7199 l 8873 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8873 7140 m 8977 7200 l 8873 7259 l 8769 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6300 m 10639 6360 l 10535 6419 l 10431 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6360 m 10535 6420 l 10431 6479 l 10327 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6420 m 10431 6480 l 10327 6539 l 10223 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6480 m 10327 6540 l 10223 6599 l 10119 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6540 m 10223 6600 l 10119 6659 l 10015 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6600 m 10119 6660 l 10015 6719 l 9911 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6660 m 10015 6720 l 9911 6779 l 9807 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6720 m 9911 6780 l 9807 6839 l 9703 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6780 m 9807 6840 l 9703 6899 l 9600 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6840 m 9703 6900 l 9600 6959 l 9497 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 6900 m 9600 6960 l 9497 7019 l 9393 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 6960 m 9497 7020 l 9393 7079 l 9289 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 7020 m 9393 7080 l 9289 7139 l 9185 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 7080 m 9289 7140 l 9185 7199 l 9081 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 7140 m 9185 7200 l 9081 7259 l 8977 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 8977 7200 m 9081 7260 l 8977 7319 l 8873 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6360 m 10743 6420 l 10639 6479 l 10535 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6420 m 10639 6480 l 10535 6539 l 10431 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6480 m 10535 6540 l 10431 6599 l 10327 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6540 m 10431 6600 l 10327 6659 l 10223 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6600 m 10327 6660 l 10223 6719 l 10119 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6660 m 10223 6720 l 10119 6779 l 10015 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6720 m 10119 6780 l 10015 6839 l 9911 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6780 m 10015 6840 l 9911 6899 l 9807 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6840 m 9911 6900 l 9807 6959 l 9703 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 6900 m 9807 6960 l 9703 7019 l 9600 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 6960 m 9703 7020 l 9600 7079 l 9497 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 7020 m 9600 7080 l 9497 7139 l 9393 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 7080 m 9497 7140 l 9393 7199 l 9289 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 7140 m 9393 7200 l 9289 7259 l 9185 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 7200 m 9289 7260 l 9185 7319 l 9081 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9081 7260 m 9185 7320 l 9081 7379 l 8977 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6420 m 10847 6480 l 10743 6539 l 10639 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6480 m 10743 6540 l 10639 6599 l 10535 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6540 m 10639 6600 l 10535 6659 l 10431 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6600 m 10535 6660 l 10431 6719 l 10327 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6660 m 10431 6720 l 10327 6779 l 10223 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6720 m 10327 6780 l 10223 6839 l 10119 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6780 m 10223 6840 l 10119 6899 l 10015 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6840 m 10119 6900 l 10015 6959 l 9911 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 6900 m 10015 6960 l 9911 7019 l 9807 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 6960 m 9911 7020 l 9807 7079 l 9703 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 7020 m 9807 7080 l 9703 7139 l 9600 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 7080 m 9703 7140 l 9600 7199 l 9497 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 7140 m 9600 7200 l 9497 7259 l 9393 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 7200 m 9497 7260 l 9393 7319 l 9289 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 7260 m 9393 7320 l 9289 7379 l 9185 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9185 7320 m 9289 7380 l 9185 7439 l 9081 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6480 m 10950 6540 l 10847 6599 l 10743 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6540 m 10847 6600 l 10743 6659 l 10639 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6600 m 10743 6660 l 10639 6719 l 10535 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6660 m 10639 6720 l 10535 6779 l 10431 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6720 m 10535 6780 l 10431 6839 l 10327 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6780 m 10431 6840 l 10327 6899 l 10223 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6840 m 10327 6900 l 10223 6959 l 10119 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 6900 m 10223 6960 l 10119 7019 l 10015 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 6960 m 10119 7020 l 10015 7079 l 9911 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 7020 m 10015 7080 l 9911 7139 l 9807 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 7080 m 9911 7140 l 9807 7199 l 9703 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 7140 m 9807 7200 l 9703 7259 l 9600 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 7200 m 9703 7260 l 9600 7319 l 9497 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 7260 m 9600 7320 l 9497 7379 l 9393 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 7320 m 9497 7380 l 9393 7439 l 9289 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9289 7380 m 9393 7440 l 9289 7499 l 9185 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6540 m 11054 6600 l 10950 6659 l 10847 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6600 m 10950 6660 l 10847 6719 l 10743 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6660 m 10847 6720 l 10743 6779 l 10639 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6720 m 10743 6780 l 10639 6839 l 10535 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6780 m 10639 6840 l 10535 6899 l 10431 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6840 m 10535 6900 l 10431 6959 l 10327 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 6900 m 10431 6960 l 10327 7019 l 10223 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 6960 m 10327 7020 l 10223 7079 l 10119 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 7020 m 10223 7080 l 10119 7139 l 10015 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 7080 m 10119 7140 l 10015 7199 l 9911 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 7140 m 10015 7200 l 9911 7259 l 9807 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 7200 m 9911 7260 l 9807 7319 l 9703 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 7260 m 9807 7320 l 9703 7379 l 9600 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 7320 m 9703 7380 l 9600 7439 l 9497 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 7380 m 9600 7440 l 9497 7499 l 9393 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9393 7440 m 9497 7500 l 9393 7559 l 9289 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6600 m 11158 6660 l 11054 6719 l 10950 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6660 m 11054 6720 l 10950 6779 l 10847 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6720 m 10950 6780 l 10847 6839 l 10743 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6780 m 10847 6840 l 10743 6899 l 10639 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6840 m 10743 6900 l 10639 6959 l 10535 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 6900 m 10639 6960 l 10535 7019 l 10431 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 6960 m 10535 7020 l 10431 7079 l 10327 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 7020 m 10431 7080 l 10327 7139 l 10223 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 7080 m 10327 7140 l 10223 7199 l 10119 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 7140 m 10223 7200 l 10119 7259 l 10015 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 7200 m 10119 7260 l 10015 7319 l 9911 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 7260 m 10015 7320 l 9911 7379 l 9807 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 7320 m 9911 7380 l 9807 7439 l 9703 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 7380 m 9807 7440 l 9703 7499 l 9600 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 7440 m 9703 7500 l 9600 7559 l 9497 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9497 7500 m 9600 7560 l 9497 7619 l 9393 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11158 6660 m 11262 6720 l 11158 6779 l 11054 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11054 6720 m 11158 6780 l 11054 6839 l 10950 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10950 6780 m 11054 6840 l 10950 6899 l 10847 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10847 6840 m 10950 6900 l 10847 6959 l 10743 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10743 6900 m 10847 6960 l 10743 7019 l 10639 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10639 6960 m 10743 7020 l 10639 7079 l 10535 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10535 7020 m 10639 7080 l 10535 7139 l 10431 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10431 7080 m 10535 7140 l 10431 7199 l 10327 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10327 7140 m 10431 7200 l 10327 7259 l 10223 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10223 7200 m 10327 7260 l 10223 7319 l 10119 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10119 7260 m 10223 7320 l 10119 7379 l 10015 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 10015 7320 m 10119 7380 l 10015 7439 l 9911 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9911 7380 m 10015 7440 l 9911 7499 l 9807 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9807 7440 m 9911 7500 l 9807 7559 l 9703 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9703 7500 m 9807 7560 l 9703 7619 l 9600 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 9600 7560 m 9703 7620 l 9600 7679 l 9497 7619 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5820 m 13440 5879 l 13440 5760 l 13543 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13440 5640 m 13337 5700 l 13337 5580 l 13440 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5520 m 13337 5580 l 13337 5460 l 13440 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5400 m 13337 5460 l 13337 5340 l 13440 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5280 m 13337 5340 l 13337 5220 l 13440 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5160 m 13337 5220 l 13337 5100 l 13440 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5040 m 13337 5100 l 13337 4980 l 13440 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4920 m 13337 4980 l 13337 4860 l 13440 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4800 m 13337 4860 l 13337 4740 l 13440 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4680 m 13337 4740 l 13337 4620 l 13440 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4560 m 13337 4620 l 13337 4500 l 13440 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4440 m 13337 4500 l 13337 4380 l 13440 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4320 m 13337 4380 l 13337 4260 l 13440 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4200 m 13337 4260 l 13337 4140 l 13440 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4080 m 13337 4140 l 13337 4020 l 13440 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3960 m 13337 4020 l 13337 3900 l 13440 3841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5880 m 13337 5939 l 13337 5819 l 13440 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13337 5700 m 13233 5760 l 13233 5640 l 13337 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5580 m 13233 5640 l 13233 5520 l 13337 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5460 m 13233 5520 l 13233 5400 l 13337 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5340 m 13233 5400 l 13233 5280 l 13337 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5220 m 13233 5280 l 13233 5160 l 13337 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5100 m 13233 5160 l 13233 5040 l 13337 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4980 m 13233 5040 l 13233 4920 l 13337 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4860 m 13233 4920 l 13233 4800 l 13337 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4740 m 13233 4800 l 13233 4680 l 13337 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4620 m 13233 4680 l 13233 4560 l 13337 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4500 m 13233 4560 l 13233 4440 l 13337 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4380 m 13233 4440 l 13233 4320 l 13337 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4260 m 13233 4320 l 13233 4200 l 13337 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4140 m 13233 4200 l 13233 4080 l 13337 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 4020 m 13233 4080 l 13233 3960 l 13337 3901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5940 m 13233 5999 l 13233 5879 l 13337 5820 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13233 5760 m 13129 5819 l 13129 5700 l 13233 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5640 m 13129 5700 l 13129 5580 l 13233 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5520 m 13129 5580 l 13129 5460 l 13233 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5400 m 13129 5460 l 13129 5340 l 13233 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5280 m 13129 5340 l 13129 5220 l 13233 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5160 m 13129 5220 l 13129 5100 l 13233 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 5040 m 13129 5100 l 13129 4980 l 13233 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4920 m 13129 4980 l 13129 4860 l 13233 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4800 m 13129 4860 l 13129 4740 l 13233 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4680 m 13129 4740 l 13129 4620 l 13233 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4560 m 13129 4620 l 13129 4500 l 13233 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4440 m 13129 4500 l 13129 4380 l 13233 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4320 m 13129 4380 l 13129 4260 l 13233 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4200 m 13129 4260 l 13129 4140 l 13233 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 4080 m 13129 4140 l 13129 4020 l 13233 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6000 m 13129 6059 l 13129 5939 l 13233 5880 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13129 5820 m 13025 5879 l 13025 5760 l 13129 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5700 m 13025 5760 l 13025 5640 l 13129 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5580 m 13025 5640 l 13025 5520 l 13129 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5460 m 13025 5520 l 13025 5400 l 13129 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5340 m 13025 5400 l 13025 5280 l 13129 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5220 m 13025 5280 l 13025 5160 l 13129 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 5100 m 13025 5160 l 13025 5040 l 13129 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4980 m 13025 5040 l 13025 4920 l 13129 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4860 m 13025 4920 l 13025 4800 l 13129 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4740 m 13025 4800 l 13025 4680 l 13129 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4620 m 13025 4680 l 13025 4560 l 13129 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4500 m 13025 4560 l 13025 4440 l 13129 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4380 m 13025 4440 l 13025 4320 l 13129 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4260 m 13025 4320 l 13025 4200 l 13129 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 4140 m 13025 4200 l 13025 4080 l 13129 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6060 m 13025 6119 l 13025 5999 l 13129 5940 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 13025 5880 m 12921 5939 l 12921 5819 l 13025 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5760 m 12921 5819 l 12921 5700 l 13025 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5640 m 12921 5700 l 12921 5580 l 13025 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5520 m 12921 5580 l 12921 5460 l 13025 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5400 m 12921 5460 l 12921 5340 l 13025 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5280 m 12921 5340 l 12921 5220 l 13025 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5160 m 12921 5220 l 12921 5100 l 13025 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 5040 m 12921 5100 l 12921 4980 l 13025 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4920 m 12921 4980 l 12921 4860 l 13025 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4800 m 12921 4860 l 12921 4740 l 13025 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4680 m 12921 4740 l 12921 4620 l 13025 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4560 m 12921 4620 l 12921 4500 l 13025 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4440 m 12921 4500 l 12921 4380 l 13025 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4320 m 12921 4380 l 12921 4260 l 13025 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 4200 m 12921 4260 l 12921 4140 l 13025 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6120 m 12921 6179 l 12921 6059 l 13025 6000 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12921 5940 m 12817 5999 l 12817 5879 l 12921 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5820 m 12817 5879 l 12817 5760 l 12921 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5700 m 12817 5760 l 12817 5640 l 12921 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5580 m 12817 5640 l 12817 5520 l 12921 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5460 m 12817 5520 l 12817 5400 l 12921 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5340 m 12817 5400 l 12817 5280 l 12921 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5220 m 12817 5280 l 12817 5160 l 12921 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 5100 m 12817 5160 l 12817 5040 l 12921 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4980 m 12817 5040 l 12817 4920 l 12921 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4860 m 12817 4920 l 12817 4800 l 12921 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4740 m 12817 4800 l 12817 4680 l 12921 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4620 m 12817 4680 l 12817 4560 l 12921 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4500 m 12817 4560 l 12817 4440 l 12921 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4380 m 12817 4440 l 12817 4320 l 12921 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 4260 m 12817 4320 l 12817 4200 l 12921 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6180 m 12817 6239 l 12817 6119 l 12921 6060 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12817 6000 m 12713 6059 l 12713 5939 l 12817 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5880 m 12713 5939 l 12713 5819 l 12817 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5760 m 12713 5819 l 12713 5700 l 12817 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5640 m 12713 5700 l 12713 5580 l 12817 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5520 m 12713 5580 l 12713 5460 l 12817 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5400 m 12713 5460 l 12713 5340 l 12817 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5280 m 12713 5340 l 12713 5220 l 12817 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5160 m 12713 5220 l 12713 5100 l 12817 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 5040 m 12713 5100 l 12713 4980 l 12817 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4920 m 12713 4980 l 12713 4860 l 12817 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4800 m 12713 4860 l 12713 4740 l 12817 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4680 m 12713 4740 l 12713 4620 l 12817 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4560 m 12713 4620 l 12713 4500 l 12817 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4440 m 12713 4500 l 12713 4380 l 12817 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 4320 m 12713 4380 l 12713 4260 l 12817 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6240 m 12713 6299 l 12713 6179 l 12817 6120 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12713 6060 m 12609 6119 l 12609 5999 l 12713 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5940 m 12609 5999 l 12609 5879 l 12713 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5820 m 12609 5879 l 12609 5760 l 12713 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5700 m 12609 5760 l 12609 5640 l 12713 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5580 m 12609 5640 l 12609 5520 l 12713 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5460 m 12609 5520 l 12609 5400 l 12713 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5340 m 12609 5400 l 12609 5280 l 12713 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5220 m 12609 5280 l 12609 5160 l 12713 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 5100 m 12609 5160 l 12609 5040 l 12713 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4980 m 12609 5040 l 12609 4920 l 12713 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4860 m 12609 4920 l 12609 4800 l 12713 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4740 m 12609 4800 l 12609 4680 l 12713 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4620 m 12609 4680 l 12609 4560 l 12713 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4500 m 12609 4560 l 12609 4440 l 12713 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 4380 m 12609 4440 l 12609 4320 l 12713 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6300 m 12609 6359 l 12609 6239 l 12713 6180 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12609 6120 m 12505 6179 l 12505 6059 l 12609 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6000 m 12505 6059 l 12505 5939 l 12609 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5880 m 12505 5939 l 12505 5819 l 12609 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5760 m 12505 5819 l 12505 5700 l 12609 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5640 m 12505 5700 l 12505 5580 l 12609 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5520 m 12505 5580 l 12505 5460 l 12609 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5400 m 12505 5460 l 12505 5340 l 12609 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5280 m 12505 5340 l 12505 5220 l 12609 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5160 m 12505 5220 l 12505 5100 l 12609 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 5040 m 12505 5100 l 12505 4980 l 12609 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 4920 m 12505 4980 l 12505 4860 l 12609 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 4800 m 12505 4860 l 12505 4740 l 12609 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 4680 m 12505 4740 l 12505 4620 l 12609 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 4560 m 12505 4620 l 12505 4500 l 12609 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 4440 m 12505 4500 l 12505 4380 l 12609 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6360 m 12505 6419 l 12505 6299 l 12609 6240 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12505 6180 m 12401 6239 l 12401 6119 l 12505 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6060 m 12401 6119 l 12401 5999 l 12505 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5940 m 12401 5999 l 12401 5879 l 12505 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5820 m 12401 5879 l 12401 5760 l 12505 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5700 m 12401 5760 l 12401 5640 l 12505 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5580 m 12401 5640 l 12401 5520 l 12505 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5460 m 12401 5520 l 12401 5400 l 12505 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5340 m 12401 5400 l 12401 5280 l 12505 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5220 m 12401 5280 l 12401 5160 l 12505 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 5100 m 12401 5160 l 12401 5040 l 12505 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 4980 m 12401 5040 l 12401 4920 l 12505 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 4860 m 12401 4920 l 12401 4800 l 12505 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 4740 m 12401 4800 l 12401 4680 l 12505 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 4620 m 12401 4680 l 12401 4560 l 12505 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 4500 m 12401 4560 l 12401 4440 l 12505 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6420 m 12401 6479 l 12401 6359 l 12505 6300 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12401 6240 m 12297 6299 l 12297 6179 l 12401 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6120 m 12297 6179 l 12297 6059 l 12401 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6000 m 12297 6059 l 12297 5939 l 12401 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5880 m 12297 5939 l 12297 5819 l 12401 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5760 m 12297 5819 l 12297 5700 l 12401 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5640 m 12297 5700 l 12297 5580 l 12401 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5520 m 12297 5580 l 12297 5460 l 12401 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5400 m 12297 5460 l 12297 5340 l 12401 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5280 m 12297 5340 l 12297 5220 l 12401 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5160 m 12297 5220 l 12297 5100 l 12401 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 5040 m 12297 5100 l 12297 4980 l 12401 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 4920 m 12297 4980 l 12297 4860 l 12401 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 4800 m 12297 4860 l 12297 4740 l 12401 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 4680 m 12297 4740 l 12297 4620 l 12401 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 4560 m 12297 4620 l 12297 4500 l 12401 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6480 m 12297 6539 l 12297 6419 l 12401 6360 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12297 6300 m 12193 6359 l 12193 6239 l 12297 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6180 m 12193 6239 l 12193 6119 l 12297 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6060 m 12193 6119 l 12193 5999 l 12297 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5940 m 12193 5999 l 12193 5879 l 12297 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5820 m 12193 5879 l 12193 5760 l 12297 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5700 m 12193 5760 l 12193 5640 l 12297 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5580 m 12193 5640 l 12193 5520 l 12297 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5460 m 12193 5520 l 12193 5400 l 12297 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5340 m 12193 5400 l 12193 5280 l 12297 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5220 m 12193 5280 l 12193 5160 l 12297 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 5100 m 12193 5160 l 12193 5040 l 12297 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 4980 m 12193 5040 l 12193 4920 l 12297 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 4860 m 12193 4920 l 12193 4800 l 12297 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 4740 m 12193 4800 l 12193 4680 l 12297 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 4620 m 12193 4680 l 12193 4560 l 12297 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6540 m 12193 6599 l 12193 6479 l 12297 6420 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12193 6360 m 12090 6419 l 12090 6299 l 12193 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6240 m 12090 6299 l 12090 6179 l 12193 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6120 m 12090 6179 l 12090 6059 l 12193 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6000 m 12090 6059 l 12090 5939 l 12193 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5880 m 12090 5939 l 12090 5819 l 12193 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5760 m 12090 5819 l 12090 5700 l 12193 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5640 m 12090 5700 l 12090 5580 l 12193 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5520 m 12090 5580 l 12090 5460 l 12193 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5400 m 12090 5460 l 12090 5340 l 12193 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5280 m 12090 5340 l 12090 5220 l 12193 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5160 m 12090 5220 l 12090 5100 l 12193 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 5040 m 12090 5100 l 12090 4980 l 12193 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 4920 m 12090 4980 l 12090 4860 l 12193 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 4800 m 12090 4860 l 12090 4740 l 12193 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 4680 m 12090 4740 l 12090 4620 l 12193 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6600 m 12090 6659 l 12090 6539 l 12193 6480 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 12090 6420 m 11986 6479 l 11986 6359 l 12090 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6300 m 11986 6359 l 11986 6239 l 12090 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6180 m 11986 6239 l 11986 6119 l 12090 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6060 m 11986 6119 l 11986 5999 l 12090 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5940 m 11986 5999 l 11986 5879 l 12090 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5820 m 11986 5879 l 11986 5760 l 12090 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5700 m 11986 5760 l 11986 5640 l 12090 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5580 m 11986 5640 l 11986 5520 l 12090 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5460 m 11986 5520 l 11986 5400 l 12090 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5340 m 11986 5400 l 11986 5280 l 12090 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5220 m 11986 5280 l 11986 5160 l 12090 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 5100 m 11986 5160 l 11986 5040 l 12090 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 4980 m 11986 5040 l 11986 4920 l 12090 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 4860 m 11986 4920 l 11986 4800 l 12090 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 4740 m 11986 4800 l 11986 4680 l 12090 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6660 m 11986 6719 l 11986 6599 l 12090 6540 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 11986 6480 m 11882 6539 l 11882 6419 l 11986 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 6360 m 11882 6419 l 11882 6299 l 11986 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 6240 m 11882 6299 l 11882 6179 l 11986 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 6120 m 11882 6179 l 11882 6059 l 11986 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 6000 m 11882 6059 l 11882 5939 l 11986 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5880 m 11882 5939 l 11882 5819 l 11986 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5760 m 11882 5819 l 11882 5700 l 11986 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5640 m 11882 5700 l 11882 5580 l 11986 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5520 m 11882 5580 l 11882 5460 l 11986 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5400 m 11882 5460 l 11882 5340 l 11986 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5280 m 11882 5340 l 11882 5220 l 11986 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5160 m 11882 5220 l 11882 5100 l 11986 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 5040 m 11882 5100 l 11882 4980 l 11986 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 4920 m 11882 4980 l 11882 4860 l 11986 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 4800 m 11882 4860 l 11882 4740 l 11986 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6660 m 11778 6719 l 11778 6599 l 11882 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6540 m 11778 6599 l 11778 6479 l 11882 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6420 m 11778 6479 l 11778 6359 l 11882 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6300 m 11778 6359 l 11778 6239 l 11882 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6180 m 11778 6239 l 11778 6119 l 11882 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6060 m 11778 6119 l 11778 5999 l 11882 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5940 m 11778 5999 l 11778 5879 l 11882 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5820 m 11778 5879 l 11778 5760 l 11882 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5700 m 11778 5760 l 11778 5640 l 11882 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5580 m 11778 5640 l 11778 5520 l 11882 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5460 m 11778 5520 l 11778 5400 l 11882 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5340 m 11778 5400 l 11778 5280 l 11882 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5220 m 11778 5280 l 11778 5160 l 11882 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 5100 m 11778 5160 l 11778 5040 l 11882 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 4980 m 11778 5040 l 11778 4920 l 11882 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 4860 m 11778 4920 l 11778 4800 l 11882 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11882 6660 m 11882 6540 l 11986 6600 l 11986 6720 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 13440 5640 m 13440 5520 l 13543 5581 l 13543 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5520 m 13440 5400 l 13543 5461 l 13543 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5400 m 13440 5280 l 13543 5341 l 13543 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5280 m 13440 5160 l 13543 5221 l 13543 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5160 m 13440 5040 l 13543 5101 l 13543 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5040 m 13440 4920 l 13543 4981 l 13543 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4920 m 13440 4800 l 13543 4861 l 13543 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4800 m 13440 4680 l 13543 4741 l 13543 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4680 m 13440 4560 l 13543 4621 l 13543 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4560 m 13440 4440 l 13543 4501 l 13543 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4440 m 13440 4320 l 13543 4381 l 13543 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4320 m 13440 4200 l 13543 4261 l 13543 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4200 m 13440 4080 l 13543 4141 l 13543 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 4080 m 13440 3960 l 13543 4021 l 13543 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 3960 m 13440 3840 l 13543 3901 l 13543 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5820 m 13543 5700 l 13647 5760 l 13647 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5700 m 13543 5580 l 13647 5641 l 13647 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5580 m 13543 5460 l 13647 5521 l 13647 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5460 m 13543 5340 l 13647 5401 l 13647 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5340 m 13543 5220 l 13647 5281 l 13647 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5220 m 13543 5100 l 13647 5161 l 13647 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5100 m 13543 4980 l 13647 5041 l 13647 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4980 m 13543 4860 l 13647 4921 l 13647 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4860 m 13543 4740 l 13647 4801 l 13647 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4740 m 13543 4620 l 13647 4681 l 13647 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4620 m 13543 4500 l 13647 4561 l 13647 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4500 m 13543 4380 l 13647 4441 l 13647 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4380 m 13543 4260 l 13647 4321 l 13647 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4260 m 13543 4140 l 13647 4201 l 13647 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4140 m 13543 4020 l 13647 4081 l 13647 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 4020 m 13543 3900 l 13647 3961 l 13647 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5880 m 13647 5760 l 13751 5820 l 13751 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5760 m 13647 5640 l 13751 5701 l 13751 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5640 m 13647 5520 l 13751 5581 l 13751 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5520 m 13647 5400 l 13751 5461 l 13751 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5400 m 13647 5280 l 13751 5341 l 13751 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5280 m 13647 5160 l 13751 5221 l 13751 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5160 m 13647 5040 l 13751 5101 l 13751 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5040 m 13647 4920 l 13751 4981 l 13751 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4920 m 13647 4800 l 13751 4861 l 13751 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4800 m 13647 4680 l 13751 4741 l 13751 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4680 m 13647 4560 l 13751 4621 l 13751 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4560 m 13647 4440 l 13751 4501 l 13751 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4440 m 13647 4320 l 13751 4381 l 13751 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4320 m 13647 4200 l 13751 4261 l 13751 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4200 m 13647 4080 l 13751 4141 l 13751 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 4080 m 13647 3960 l 13751 4021 l 13751 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5940 m 13751 5820 l 13855 5880 l 13855 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5820 m 13751 5700 l 13855 5760 l 13855 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5700 m 13751 5580 l 13855 5641 l 13855 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5580 m 13751 5460 l 13855 5521 l 13855 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5460 m 13751 5340 l 13855 5401 l 13855 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5340 m 13751 5220 l 13855 5281 l 13855 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5220 m 13751 5100 l 13855 5161 l 13855 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5100 m 13751 4980 l 13855 5041 l 13855 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4980 m 13751 4860 l 13855 4921 l 13855 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4860 m 13751 4740 l 13855 4801 l 13855 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4740 m 13751 4620 l 13855 4681 l 13855 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4620 m 13751 4500 l 13855 4561 l 13855 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4500 m 13751 4380 l 13855 4441 l 13855 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4380 m 13751 4260 l 13855 4321 l 13855 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4260 m 13751 4140 l 13855 4201 l 13855 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 4140 m 13751 4020 l 13855 4081 l 13855 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6000 m 13855 5880 l 13959 5940 l 13959 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5880 m 13855 5760 l 13959 5820 l 13959 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5760 m 13855 5640 l 13959 5701 l 13959 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5640 m 13855 5520 l 13959 5581 l 13959 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5520 m 13855 5400 l 13959 5461 l 13959 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5400 m 13855 5280 l 13959 5341 l 13959 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5280 m 13855 5160 l 13959 5221 l 13959 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5160 m 13855 5040 l 13959 5101 l 13959 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 5040 m 13855 4920 l 13959 4981 l 13959 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4920 m 13855 4800 l 13959 4861 l 13959 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4800 m 13855 4680 l 13959 4741 l 13959 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4680 m 13855 4560 l 13959 4621 l 13959 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4560 m 13855 4440 l 13959 4501 l 13959 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4440 m 13855 4320 l 13959 4381 l 13959 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4320 m 13855 4200 l 13959 4261 l 13959 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 4200 m 13855 4080 l 13959 4141 l 13959 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6060 m 13959 5940 l 14063 6000 l 14063 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5940 m 13959 5820 l 14063 5880 l 14063 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5820 m 13959 5700 l 14063 5760 l 14063 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5700 m 13959 5580 l 14063 5641 l 14063 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5580 m 13959 5460 l 14063 5521 l 14063 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5460 m 13959 5340 l 14063 5401 l 14063 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5340 m 13959 5220 l 14063 5281 l 14063 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5220 m 13959 5100 l 14063 5161 l 14063 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 5100 m 13959 4980 l 14063 5041 l 14063 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4980 m 13959 4860 l 14063 4921 l 14063 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4860 m 13959 4740 l 14063 4801 l 14063 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4740 m 13959 4620 l 14063 4681 l 14063 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4620 m 13959 4500 l 14063 4561 l 14063 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4500 m 13959 4380 l 14063 4441 l 14063 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4380 m 13959 4260 l 14063 4321 l 14063 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 4260 m 13959 4140 l 14063 4201 l 14063 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6120 m 14063 6000 l 14167 6060 l 14167 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6000 m 14063 5880 l 14167 5940 l 14167 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5880 m 14063 5760 l 14167 5820 l 14167 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5760 m 14063 5640 l 14167 5701 l 14167 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5640 m 14063 5520 l 14167 5581 l 14167 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5520 m 14063 5400 l 14167 5461 l 14167 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5400 m 14063 5280 l 14167 5341 l 14167 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5280 m 14063 5160 l 14167 5221 l 14167 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5160 m 14063 5040 l 14167 5101 l 14167 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 5040 m 14063 4920 l 14167 4981 l 14167 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4920 m 14063 4800 l 14167 4861 l 14167 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4800 m 14063 4680 l 14167 4741 l 14167 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4680 m 14063 4560 l 14167 4621 l 14167 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4560 m 14063 4440 l 14167 4501 l 14167 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4440 m 14063 4320 l 14167 4381 l 14167 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 4320 m 14063 4200 l 14167 4261 l 14167 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6180 m 14167 6060 l 14271 6120 l 14271 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6060 m 14167 5940 l 14271 6000 l 14271 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5940 m 14167 5820 l 14271 5880 l 14271 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5820 m 14167 5700 l 14271 5760 l 14271 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5700 m 14167 5580 l 14271 5641 l 14271 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5580 m 14167 5460 l 14271 5521 l 14271 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5460 m 14167 5340 l 14271 5401 l 14271 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5340 m 14167 5220 l 14271 5281 l 14271 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5220 m 14167 5100 l 14271 5161 l 14271 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 5100 m 14167 4980 l 14271 5041 l 14271 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4980 m 14167 4860 l 14271 4921 l 14271 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4860 m 14167 4740 l 14271 4801 l 14271 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4740 m 14167 4620 l 14271 4681 l 14271 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4620 m 14167 4500 l 14271 4561 l 14271 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4500 m 14167 4380 l 14271 4441 l 14271 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 4380 m 14167 4260 l 14271 4321 l 14271 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6240 m 14271 6120 l 14375 6180 l 14375 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6120 m 14271 6000 l 14375 6060 l 14375 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6000 m 14271 5880 l 14375 5940 l 14375 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5880 m 14271 5760 l 14375 5820 l 14375 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5760 m 14271 5640 l 14375 5701 l 14375 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5640 m 14271 5520 l 14375 5581 l 14375 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5520 m 14271 5400 l 14375 5461 l 14375 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5400 m 14271 5280 l 14375 5341 l 14375 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5280 m 14271 5160 l 14375 5221 l 14375 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5160 m 14271 5040 l 14375 5101 l 14375 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 5040 m 14271 4920 l 14375 4981 l 14375 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 4920 m 14271 4800 l 14375 4861 l 14375 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 4800 m 14271 4680 l 14375 4741 l 14375 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 4680 m 14271 4560 l 14375 4621 l 14375 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 4560 m 14271 4440 l 14375 4501 l 14375 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 4440 m 14271 4320 l 14375 4381 l 14375 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6300 m 14375 6180 l 14479 6240 l 14479 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6180 m 14375 6060 l 14479 6120 l 14479 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6060 m 14375 5940 l 14479 6000 l 14479 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5940 m 14375 5820 l 14479 5880 l 14479 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5820 m 14375 5700 l 14479 5760 l 14479 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5700 m 14375 5580 l 14479 5641 l 14479 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5580 m 14375 5460 l 14479 5521 l 14479 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5460 m 14375 5340 l 14479 5401 l 14479 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5340 m 14375 5220 l 14479 5281 l 14479 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5220 m 14375 5100 l 14479 5161 l 14479 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 5100 m 14375 4980 l 14479 5041 l 14479 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 4980 m 14375 4860 l 14479 4921 l 14479 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 4860 m 14375 4740 l 14479 4801 l 14479 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 4740 m 14375 4620 l 14479 4681 l 14479 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 4620 m 14375 4500 l 14479 4561 l 14479 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 4500 m 14375 4380 l 14479 4441 l 14479 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6360 m 14479 6240 l 14583 6300 l 14583 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6240 m 14479 6120 l 14583 6180 l 14583 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6120 m 14479 6000 l 14583 6060 l 14583 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6000 m 14479 5880 l 14583 5940 l 14583 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5880 m 14479 5760 l 14583 5820 l 14583 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5760 m 14479 5640 l 14583 5701 l 14583 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5640 m 14479 5520 l 14583 5581 l 14583 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5520 m 14479 5400 l 14583 5461 l 14583 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5400 m 14479 5280 l 14583 5341 l 14583 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5280 m 14479 5160 l 14583 5221 l 14583 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5160 m 14479 5040 l 14583 5101 l 14583 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 5040 m 14479 4920 l 14583 4981 l 14583 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 4920 m 14479 4800 l 14583 4861 l 14583 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 4800 m 14479 4680 l 14583 4741 l 14583 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 4680 m 14479 4560 l 14583 4621 l 14583 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 4560 m 14479 4440 l 14583 4501 l 14583 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6420 m 14583 6300 l 14687 6360 l 14687 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6300 m 14583 6180 l 14687 6240 l 14687 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6180 m 14583 6060 l 14687 6120 l 14687 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6060 m 14583 5940 l 14687 6000 l 14687 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5940 m 14583 5820 l 14687 5880 l 14687 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5820 m 14583 5700 l 14687 5760 l 14687 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5700 m 14583 5580 l 14687 5641 l 14687 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5580 m 14583 5460 l 14687 5521 l 14687 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5460 m 14583 5340 l 14687 5401 l 14687 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5340 m 14583 5220 l 14687 5281 l 14687 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5220 m 14583 5100 l 14687 5161 l 14687 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 5100 m 14583 4980 l 14687 5041 l 14687 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 4980 m 14583 4860 l 14687 4921 l 14687 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 4860 m 14583 4740 l 14687 4801 l 14687 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 4740 m 14583 4620 l 14687 4681 l 14687 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 4620 m 14583 4500 l 14687 4561 l 14687 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6480 m 14687 6360 l 14790 6420 l 14790 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6360 m 14687 6240 l 14790 6300 l 14790 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6240 m 14687 6120 l 14790 6180 l 14790 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6120 m 14687 6000 l 14790 6060 l 14790 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6000 m 14687 5880 l 14790 5940 l 14790 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5880 m 14687 5760 l 14790 5820 l 14790 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5760 m 14687 5640 l 14790 5701 l 14790 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5640 m 14687 5520 l 14790 5581 l 14790 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5520 m 14687 5400 l 14790 5461 l 14790 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5400 m 14687 5280 l 14790 5341 l 14790 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5280 m 14687 5160 l 14790 5221 l 14790 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5160 m 14687 5040 l 14790 5101 l 14790 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 5040 m 14687 4920 l 14790 4981 l 14790 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 4920 m 14687 4800 l 14790 4861 l 14790 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 4800 m 14687 4680 l 14790 4741 l 14790 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 4680 m 14687 4560 l 14790 4621 l 14790 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6540 m 14790 6420 l 14894 6480 l 14894 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6420 m 14790 6300 l 14894 6360 l 14894 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6300 m 14790 6180 l 14894 6240 l 14894 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6180 m 14790 6060 l 14894 6120 l 14894 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6060 m 14790 5940 l 14894 6000 l 14894 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5940 m 14790 5820 l 14894 5880 l 14894 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5820 m 14790 5700 l 14894 5760 l 14894 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5700 m 14790 5580 l 14894 5641 l 14894 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5580 m 14790 5460 l 14894 5521 l 14894 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5460 m 14790 5340 l 14894 5401 l 14894 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5340 m 14790 5220 l 14894 5281 l 14894 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5220 m 14790 5100 l 14894 5161 l 14894 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 5100 m 14790 4980 l 14894 5041 l 14894 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 4980 m 14790 4860 l 14894 4921 l 14894 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 4860 m 14790 4740 l 14894 4801 l 14894 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 4740 m 14790 4620 l 14894 4681 l 14894 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6600 m 14894 6480 l 14998 6540 l 14998 6660 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6480 m 14894 6360 l 14998 6420 l 14998 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6360 m 14894 6240 l 14998 6300 l 14998 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6240 m 14894 6120 l 14998 6180 l 14998 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6120 m 14894 6000 l 14998 6060 l 14998 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6000 m 14894 5880 l 14998 5940 l 14998 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5880 m 14894 5760 l 14998 5820 l 14998 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5760 m 14894 5640 l 14998 5701 l 14998 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5640 m 14894 5520 l 14998 5581 l 14998 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5520 m 14894 5400 l 14998 5461 l 14998 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5400 m 14894 5280 l 14998 5341 l 14998 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5280 m 14894 5160 l 14998 5221 l 14998 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5160 m 14894 5040 l 14998 5101 l 14998 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 5040 m 14894 4920 l 14998 4981 l 14998 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 4920 m 14894 4800 l 14998 4861 l 14998 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 4800 m 14894 4680 l 14998 4741 l 14998 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6660 m 14998 6540 l 15102 6600 l 15102 6720 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6540 m 14998 6420 l 15102 6480 l 15102 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6420 m 14998 6300 l 15102 6360 l 15102 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6300 m 14998 6180 l 15102 6240 l 15102 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6180 m 14998 6060 l 15102 6120 l 15102 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6060 m 14998 5940 l 15102 6000 l 15102 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5940 m 14998 5820 l 15102 5880 l 15102 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5820 m 14998 5700 l 15102 5760 l 15102 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5700 m 14998 5580 l 15102 5641 l 15102 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5580 m 14998 5460 l 15102 5521 l 15102 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5460 m 14998 5340 l 15102 5401 l 15102 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5340 m 14998 5220 l 15102 5281 l 15102 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5220 m 14998 5100 l 15102 5161 l 15102 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 5100 m 14998 4980 l 15102 5041 l 15102 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 4980 m 14998 4860 l 15102 4921 l 15102 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 4860 m 14998 4740 l 15102 4801 l 15102 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5640 m 13543 5701 l 13440 5760 l 13337 5700 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13337 5700 m 13440 5760 l 13337 5819 l 13233 5760 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13233 5760 m 13337 5820 l 13233 5879 l 13129 5819 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13129 5820 m 13233 5880 l 13129 5939 l 13025 5879 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 13025 5880 m 13129 5940 l 13025 5999 l 12921 5939 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12921 5940 m 13025 6000 l 12921 6059 l 12817 5999 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12817 6000 m 12921 6060 l 12817 6119 l 12713 6059 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12713 6060 m 12817 6120 l 12713 6179 l 12609 6119 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12609 6120 m 12713 6180 l 12609 6239 l 12505 6179 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12505 6180 m 12609 6240 l 12505 6299 l 12401 6239 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12401 6240 m 12505 6300 l 12401 6359 l 12297 6299 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12297 6300 m 12401 6360 l 12297 6419 l 12193 6359 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12193 6360 m 12297 6420 l 12193 6479 l 12090 6419 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 12090 6420 m 12193 6480 l 12090 6539 l 11986 6479 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 11986 6480 m 12090 6540 l 11986 6599 l 11882 6539 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 11882 6660 m 11986 6720 l 11882 6779 l 11778 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5820 m 13647 5880 l 13543 5939 l 13440 5879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 5880 m 13543 5940 l 13440 5999 l 13337 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 5940 m 13440 6000 l 13337 6059 l 13233 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6000 m 13337 6060 l 13233 6119 l 13129 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6060 m 13233 6120 l 13129 6179 l 13025 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6120 m 13129 6180 l 13025 6239 l 12921 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6180 m 13025 6240 l 12921 6299 l 12817 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6240 m 12921 6300 l 12817 6359 l 12713 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6300 m 12817 6360 l 12713 6419 l 12609 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6360 m 12713 6420 l 12609 6479 l 12505 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6420 m 12609 6480 l 12505 6539 l 12401 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6480 m 12505 6540 l 12401 6599 l 12297 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6540 m 12401 6600 l 12297 6659 l 12193 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6600 m 12297 6660 l 12193 6719 l 12090 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6660 m 12193 6720 l 12090 6779 l 11986 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 11986 6720 m 12090 6780 l 11986 6839 l 11882 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 5880 m 13751 5940 l 13647 5999 l 13543 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 5940 m 13647 6000 l 13543 6059 l 13440 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6000 m 13543 6060 l 13440 6119 l 13337 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6060 m 13440 6120 l 13337 6179 l 13233 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6120 m 13337 6180 l 13233 6239 l 13129 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6180 m 13233 6240 l 13129 6299 l 13025 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6240 m 13129 6300 l 13025 6359 l 12921 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6300 m 13025 6360 l 12921 6419 l 12817 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6360 m 12921 6420 l 12817 6479 l 12713 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6420 m 12817 6480 l 12713 6539 l 12609 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6480 m 12713 6540 l 12609 6599 l 12505 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6540 m 12609 6600 l 12505 6659 l 12401 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6600 m 12505 6660 l 12401 6719 l 12297 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6660 m 12401 6720 l 12297 6779 l 12193 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6720 m 12297 6780 l 12193 6839 l 12090 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12090 6780 m 12193 6840 l 12090 6899 l 11986 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 5940 m 13855 6000 l 13751 6059 l 13647 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6000 m 13751 6060 l 13647 6119 l 13543 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6060 m 13647 6120 l 13543 6179 l 13440 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6120 m 13543 6180 l 13440 6239 l 13337 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6180 m 13440 6240 l 13337 6299 l 13233 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6240 m 13337 6300 l 13233 6359 l 13129 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6300 m 13233 6360 l 13129 6419 l 13025 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6360 m 13129 6420 l 13025 6479 l 12921 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6420 m 13025 6480 l 12921 6539 l 12817 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6480 m 12921 6540 l 12817 6599 l 12713 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6540 m 12817 6600 l 12713 6659 l 12609 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6600 m 12713 6660 l 12609 6719 l 12505 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6660 m 12609 6720 l 12505 6779 l 12401 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6720 m 12505 6780 l 12401 6839 l 12297 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6780 m 12401 6840 l 12297 6899 l 12193 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12193 6840 m 12297 6900 l 12193 6959 l 12090 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6000 m 13959 6060 l 13855 6119 l 13751 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6060 m 13855 6120 l 13751 6179 l 13647 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6120 m 13751 6180 l 13647 6239 l 13543 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6180 m 13647 6240 l 13543 6299 l 13440 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6240 m 13543 6300 l 13440 6359 l 13337 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6300 m 13440 6360 l 13337 6419 l 13233 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6360 m 13337 6420 l 13233 6479 l 13129 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6420 m 13233 6480 l 13129 6539 l 13025 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6480 m 13129 6540 l 13025 6599 l 12921 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6540 m 13025 6600 l 12921 6659 l 12817 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6600 m 12921 6660 l 12817 6719 l 12713 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6660 m 12817 6720 l 12713 6779 l 12609 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6720 m 12713 6780 l 12609 6839 l 12505 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6780 m 12609 6840 l 12505 6899 l 12401 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6840 m 12505 6900 l 12401 6959 l 12297 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12297 6900 m 12401 6960 l 12297 7019 l 12193 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6060 m 14063 6120 l 13959 6179 l 13855 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6120 m 13959 6180 l 13855 6239 l 13751 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6180 m 13855 6240 l 13751 6299 l 13647 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6240 m 13751 6300 l 13647 6359 l 13543 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6300 m 13647 6360 l 13543 6419 l 13440 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6360 m 13543 6420 l 13440 6479 l 13337 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6420 m 13440 6480 l 13337 6539 l 13233 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6480 m 13337 6540 l 13233 6599 l 13129 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6540 m 13233 6600 l 13129 6659 l 13025 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6600 m 13129 6660 l 13025 6719 l 12921 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6660 m 13025 6720 l 12921 6779 l 12817 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6720 m 12921 6780 l 12817 6839 l 12713 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6780 m 12817 6840 l 12713 6899 l 12609 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6840 m 12713 6900 l 12609 6959 l 12505 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 6900 m 12609 6960 l 12505 7019 l 12401 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12401 6960 m 12505 7020 l 12401 7079 l 12297 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6120 m 14167 6180 l 14063 6239 l 13959 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6180 m 14063 6240 l 13959 6299 l 13855 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6240 m 13959 6300 l 13855 6359 l 13751 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6300 m 13855 6360 l 13751 6419 l 13647 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6360 m 13751 6420 l 13647 6479 l 13543 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6420 m 13647 6480 l 13543 6539 l 13440 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6480 m 13543 6540 l 13440 6599 l 13337 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6540 m 13440 6600 l 13337 6659 l 13233 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6600 m 13337 6660 l 13233 6719 l 13129 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6660 m 13233 6720 l 13129 6779 l 13025 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6720 m 13129 6780 l 13025 6839 l 12921 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6780 m 13025 6840 l 12921 6899 l 12817 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6840 m 12921 6900 l 12817 6959 l 12713 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 6900 m 12817 6960 l 12713 7019 l 12609 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 6960 m 12713 7020 l 12609 7079 l 12505 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12505 7020 m 12609 7080 l 12505 7139 l 12401 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6180 m 14271 6240 l 14167 6299 l 14063 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6240 m 14167 6300 l 14063 6359 l 13959 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6300 m 14063 6360 l 13959 6419 l 13855 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6360 m 13959 6420 l 13855 6479 l 13751 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6420 m 13855 6480 l 13751 6539 l 13647 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6480 m 13751 6540 l 13647 6599 l 13543 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6540 m 13647 6600 l 13543 6659 l 13440 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6600 m 13543 6660 l 13440 6719 l 13337 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6660 m 13440 6720 l 13337 6779 l 13233 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6720 m 13337 6780 l 13233 6839 l 13129 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6780 m 13233 6840 l 13129 6899 l 13025 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6840 m 13129 6900 l 13025 6959 l 12921 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 6900 m 13025 6960 l 12921 7019 l 12817 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 6960 m 12921 7020 l 12817 7079 l 12713 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 7020 m 12817 7080 l 12713 7139 l 12609 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12609 7080 m 12713 7140 l 12609 7199 l 12505 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6240 m 14375 6300 l 14271 6359 l 14167 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6300 m 14271 6360 l 14167 6419 l 14063 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6360 m 14167 6420 l 14063 6479 l 13959 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6420 m 14063 6480 l 13959 6539 l 13855 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6480 m 13959 6540 l 13855 6599 l 13751 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6540 m 13855 6600 l 13751 6659 l 13647 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6600 m 13751 6660 l 13647 6719 l 13543 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6660 m 13647 6720 l 13543 6779 l 13440 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6720 m 13543 6780 l 13440 6839 l 13337 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6780 m 13440 6840 l 13337 6899 l 13233 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6840 m 13337 6900 l 13233 6959 l 13129 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 6900 m 13233 6960 l 13129 7019 l 13025 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 6960 m 13129 7020 l 13025 7079 l 12921 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 7020 m 13025 7080 l 12921 7139 l 12817 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 7080 m 12921 7140 l 12817 7199 l 12713 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12713 7140 m 12817 7200 l 12713 7259 l 12609 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6300 m 14479 6360 l 14375 6419 l 14271 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6360 m 14375 6420 l 14271 6479 l 14167 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6420 m 14271 6480 l 14167 6539 l 14063 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6480 m 14167 6540 l 14063 6599 l 13959 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6540 m 14063 6600 l 13959 6659 l 13855 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6600 m 13959 6660 l 13855 6719 l 13751 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6660 m 13855 6720 l 13751 6779 l 13647 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6720 m 13751 6780 l 13647 6839 l 13543 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6780 m 13647 6840 l 13543 6899 l 13440 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6840 m 13543 6900 l 13440 6959 l 13337 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 6900 m 13440 6960 l 13337 7019 l 13233 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 6960 m 13337 7020 l 13233 7079 l 13129 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 7020 m 13233 7080 l 13129 7139 l 13025 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 7080 m 13129 7140 l 13025 7199 l 12921 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 7140 m 13025 7200 l 12921 7259 l 12817 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12817 7200 m 12921 7260 l 12817 7319 l 12713 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6360 m 14583 6420 l 14479 6479 l 14375 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6420 m 14479 6480 l 14375 6539 l 14271 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6480 m 14375 6540 l 14271 6599 l 14167 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6540 m 14271 6600 l 14167 6659 l 14063 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6600 m 14167 6660 l 14063 6719 l 13959 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6660 m 14063 6720 l 13959 6779 l 13855 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6720 m 13959 6780 l 13855 6839 l 13751 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6780 m 13855 6840 l 13751 6899 l 13647 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6840 m 13751 6900 l 13647 6959 l 13543 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 6900 m 13647 6960 l 13543 7019 l 13440 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 6960 m 13543 7020 l 13440 7079 l 13337 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 7020 m 13440 7080 l 13337 7139 l 13233 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 7080 m 13337 7140 l 13233 7199 l 13129 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 7140 m 13233 7200 l 13129 7259 l 13025 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 7200 m 13129 7260 l 13025 7319 l 12921 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 12921 7260 m 13025 7320 l 12921 7379 l 12817 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6420 m 14687 6480 l 14583 6539 l 14479 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6480 m 14583 6540 l 14479 6599 l 14375 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6540 m 14479 6600 l 14375 6659 l 14271 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6600 m 14375 6660 l 14271 6719 l 14167 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6660 m 14271 6720 l 14167 6779 l 14063 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6720 m 14167 6780 l 14063 6839 l 13959 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6780 m 14063 6840 l 13959 6899 l 13855 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6840 m 13959 6900 l 13855 6959 l 13751 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 6900 m 13855 6960 l 13751 7019 l 13647 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 6960 m 13751 7020 l 13647 7079 l 13543 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 7020 m 13647 7080 l 13543 7139 l 13440 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 7080 m 13543 7140 l 13440 7199 l 13337 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 7140 m 13440 7200 l 13337 7259 l 13233 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 7200 m 13337 7260 l 13233 7319 l 13129 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 7260 m 13233 7320 l 13129 7379 l 13025 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13025 7320 m 13129 7380 l 13025 7439 l 12921 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6480 m 14790 6540 l 14687 6599 l 14583 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6540 m 14687 6600 l 14583 6659 l 14479 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6600 m 14583 6660 l 14479 6719 l 14375 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6660 m 14479 6720 l 14375 6779 l 14271 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6720 m 14375 6780 l 14271 6839 l 14167 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6780 m 14271 6840 l 14167 6899 l 14063 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6840 m 14167 6900 l 14063 6959 l 13959 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 6900 m 14063 6960 l 13959 7019 l 13855 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 6960 m 13959 7020 l 13855 7079 l 13751 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 7020 m 13855 7080 l 13751 7139 l 13647 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 7080 m 13751 7140 l 13647 7199 l 13543 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 7140 m 13647 7200 l 13543 7259 l 13440 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 7200 m 13543 7260 l 13440 7319 l 13337 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 7260 m 13440 7320 l 13337 7379 l 13233 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 7320 m 13337 7380 l 13233 7439 l 13129 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13129 7380 m 13233 7440 l 13129 7499 l 13025 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6540 m 14894 6600 l 14790 6659 l 14687 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6600 m 14790 6660 l 14687 6719 l 14583 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6660 m 14687 6720 l 14583 6779 l 14479 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6720 m 14583 6780 l 14479 6839 l 14375 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6780 m 14479 6840 l 14375 6899 l 14271 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6840 m 14375 6900 l 14271 6959 l 14167 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 6900 m 14271 6960 l 14167 7019 l 14063 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 6960 m 14167 7020 l 14063 7079 l 13959 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 7020 m 14063 7080 l 13959 7139 l 13855 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 7080 m 13959 7140 l 13855 7199 l 13751 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 7140 m 13855 7200 l 13751 7259 l 13647 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 7200 m 13751 7260 l 13647 7319 l 13543 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 7260 m 13647 7320 l 13543 7379 l 13440 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 7320 m 13543 7380 l 13440 7439 l 13337 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 7380 m 13440 7440 l 13337 7499 l 13233 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13233 7440 m 13337 7500 l 13233 7559 l 13129 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6600 m 14998 6660 l 14894 6719 l 14790 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6660 m 14894 6720 l 14790 6779 l 14687 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6720 m 14790 6780 l 14687 6839 l 14583 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6780 m 14687 6840 l 14583 6899 l 14479 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6840 m 14583 6900 l 14479 6959 l 14375 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 6900 m 14479 6960 l 14375 7019 l 14271 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 6960 m 14375 7020 l 14271 7079 l 14167 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 7020 m 14271 7080 l 14167 7139 l 14063 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 7080 m 14167 7140 l 14063 7199 l 13959 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 7140 m 14063 7200 l 13959 7259 l 13855 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 7200 m 13959 7260 l 13855 7319 l 13751 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 7260 m 13855 7320 l 13751 7379 l 13647 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 7320 m 13751 7380 l 13647 7439 l 13543 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 7380 m 13647 7440 l 13543 7499 l 13440 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 7440 m 13543 7500 l 13440 7559 l 13337 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13337 7500 m 13440 7560 l 13337 7619 l 13233 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14998 6660 m 15102 6720 l 14998 6779 l 14894 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14894 6720 m 14998 6780 l 14894 6839 l 14790 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14790 6780 m 14894 6840 l 14790 6899 l 14687 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14687 6840 m 14790 6900 l 14687 6959 l 14583 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14583 6900 m 14687 6960 l 14583 7019 l 14479 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14479 6960 m 14583 7020 l 14479 7079 l 14375 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14375 7020 m 14479 7080 l 14375 7139 l 14271 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14271 7080 m 14375 7140 l 14271 7199 l 14167 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14167 7140 m 14271 7200 l 14167 7259 l 14063 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 14063 7200 m 14167 7260 l 14063 7319 l 13959 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13959 7260 m 14063 7320 l 13959 7379 l 13855 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13855 7320 m 13959 7380 l 13855 7439 l 13751 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13751 7380 m 13855 7440 l 13751 7499 l 13647 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13647 7440 m 13751 7500 l 13647 7559 l 13543 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13543 7500 m 13647 7560 l 13543 7619 l 13440 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 13440 7560 m 13543 7620 l 13440 7679 l 13337 7619 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5820 m 17280 5879 l 17280 5760 l 17383 5701 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5700 m 17280 5760 l 17280 5640 l 17383 5581 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5580 m 17280 5640 l 17280 5520 l 17383 5461 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5460 m 17280 5520 l 17280 5400 l 17383 5341 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5340 m 17280 5400 l 17280 5280 l 17383 5221 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5220 m 17280 5280 l 17280 5160 l 17383 5101 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 5100 m 17280 5160 l 17280 5040 l 17383 4981 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 4980 m 17280 5040 l 17280 4920 l 17383 4861 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 4860 m 17280 4920 l 17280 4800 l 17383 4741 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 4740 m 17280 4800 l 17280 4680 l 17383 4621 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17383 4620 m 17280 4680 l 17280 4560 l 17383 4501 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 4440 m 17177 4500 l 17177 4380 l 17280 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4320 m 17177 4380 l 17177 4260 l 17280 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4200 m 17177 4260 l 17177 4140 l 17280 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4080 m 17177 4140 l 17177 4020 l 17280 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3960 m 17177 4020 l 17177 3900 l 17280 3841 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 5880 m 17177 5939 l 17177 5819 l 17280 5760 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 5760 m 17177 5819 l 17177 5700 l 17280 5641 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 5640 m 17177 5700 l 17177 5580 l 17280 5521 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17280 5520 m 17177 5580 l 17177 5460 l 17280 5401 l cp gs col7 0.50 shd ef gr gs col0 s gr % Polyline n 17177 5340 m 17073 5400 l 17073 5280 l 17177 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 5220 m 17073 5280 l 17073 5160 l 17177 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 5100 m 17073 5160 l 17073 5040 l 17177 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4980 m 17073 5040 l 17073 4920 l 17177 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4860 m 17073 4920 l 17073 4800 l 17177 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4740 m 17073 4800 l 17073 4680 l 17177 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4620 m 17073 4680 l 17073 4560 l 17177 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4500 m 17073 4560 l 17073 4440 l 17177 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4380 m 17073 4440 l 17073 4320 l 17177 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4260 m 17073 4320 l 17073 4200 l 17177 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4140 m 17073 4200 l 17073 4080 l 17177 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 4020 m 17073 4080 l 17073 3960 l 17177 3901 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5880 m 16969 5939 l 16969 5819 l 17073 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5760 m 16969 5819 l 16969 5700 l 17073 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5640 m 16969 5700 l 16969 5580 l 17073 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5520 m 16969 5580 l 16969 5460 l 17073 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5400 m 16969 5460 l 16969 5340 l 17073 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5280 m 16969 5340 l 16969 5220 l 17073 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5160 m 16969 5220 l 16969 5100 l 17073 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5040 m 16969 5100 l 16969 4980 l 17073 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4920 m 16969 4980 l 16969 4860 l 17073 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4800 m 16969 4860 l 16969 4740 l 17073 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4680 m 16969 4740 l 16969 4620 l 17073 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4560 m 16969 4620 l 16969 4500 l 17073 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4440 m 16969 4500 l 16969 4380 l 17073 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4320 m 16969 4380 l 16969 4260 l 17073 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4200 m 16969 4260 l 16969 4140 l 17073 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 4080 m 16969 4140 l 16969 4020 l 17073 3961 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5940 m 16865 5999 l 16865 5879 l 16969 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5820 m 16865 5879 l 16865 5760 l 16969 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5700 m 16865 5760 l 16865 5640 l 16969 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5580 m 16865 5640 l 16865 5520 l 16969 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5460 m 16865 5520 l 16865 5400 l 16969 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5340 m 16865 5400 l 16865 5280 l 16969 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5220 m 16865 5280 l 16865 5160 l 16969 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5100 m 16865 5160 l 16865 5040 l 16969 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4980 m 16865 5040 l 16865 4920 l 16969 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4860 m 16865 4920 l 16865 4800 l 16969 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4740 m 16865 4800 l 16865 4680 l 16969 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4620 m 16865 4680 l 16865 4560 l 16969 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4500 m 16865 4560 l 16865 4440 l 16969 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4380 m 16865 4440 l 16865 4320 l 16969 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4260 m 16865 4320 l 16865 4200 l 16969 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 4140 m 16865 4200 l 16865 4080 l 16969 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6000 m 16761 6059 l 16761 5939 l 16865 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5880 m 16761 5939 l 16761 5819 l 16865 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5760 m 16761 5819 l 16761 5700 l 16865 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5640 m 16761 5700 l 16761 5580 l 16865 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5520 m 16761 5580 l 16761 5460 l 16865 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5400 m 16761 5460 l 16761 5340 l 16865 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5280 m 16761 5340 l 16761 5220 l 16865 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5160 m 16761 5220 l 16761 5100 l 16865 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 5040 m 16761 5100 l 16761 4980 l 16865 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4920 m 16761 4980 l 16761 4860 l 16865 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4800 m 16761 4860 l 16761 4740 l 16865 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4680 m 16761 4740 l 16761 4620 l 16865 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4560 m 16761 4620 l 16761 4500 l 16865 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4440 m 16761 4500 l 16761 4380 l 16865 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4320 m 16761 4380 l 16761 4260 l 16865 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 4200 m 16761 4260 l 16761 4140 l 16865 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6060 m 16657 6119 l 16657 5999 l 16761 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5940 m 16657 5999 l 16657 5879 l 16761 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5820 m 16657 5879 l 16657 5760 l 16761 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5700 m 16657 5760 l 16657 5640 l 16761 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5580 m 16657 5640 l 16657 5520 l 16761 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5460 m 16657 5520 l 16657 5400 l 16761 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5340 m 16657 5400 l 16657 5280 l 16761 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5220 m 16657 5280 l 16657 5160 l 16761 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 5100 m 16657 5160 l 16657 5040 l 16761 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4980 m 16657 5040 l 16657 4920 l 16761 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4860 m 16657 4920 l 16657 4800 l 16761 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4740 m 16657 4800 l 16657 4680 l 16761 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4620 m 16657 4680 l 16657 4560 l 16761 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4500 m 16657 4560 l 16657 4440 l 16761 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4380 m 16657 4440 l 16657 4320 l 16761 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 4260 m 16657 4320 l 16657 4200 l 16761 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6120 m 16553 6179 l 16553 6059 l 16657 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6000 m 16553 6059 l 16553 5939 l 16657 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5880 m 16553 5939 l 16553 5819 l 16657 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5760 m 16553 5819 l 16553 5700 l 16657 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5640 m 16553 5700 l 16553 5580 l 16657 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5520 m 16553 5580 l 16553 5460 l 16657 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5400 m 16553 5460 l 16553 5340 l 16657 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5280 m 16553 5340 l 16553 5220 l 16657 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5160 m 16553 5220 l 16553 5100 l 16657 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 5040 m 16553 5100 l 16553 4980 l 16657 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4920 m 16553 4980 l 16553 4860 l 16657 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4800 m 16553 4860 l 16553 4740 l 16657 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4680 m 16553 4740 l 16553 4620 l 16657 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4560 m 16553 4620 l 16553 4500 l 16657 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4440 m 16553 4500 l 16553 4380 l 16657 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 4320 m 16553 4380 l 16553 4260 l 16657 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6180 m 16449 6239 l 16449 6119 l 16553 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6060 m 16449 6119 l 16449 5999 l 16553 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5940 m 16449 5999 l 16449 5879 l 16553 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5820 m 16449 5879 l 16449 5760 l 16553 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5700 m 16449 5760 l 16449 5640 l 16553 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5580 m 16449 5640 l 16449 5520 l 16553 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5460 m 16449 5520 l 16449 5400 l 16553 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5340 m 16449 5400 l 16449 5280 l 16553 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5220 m 16449 5280 l 16449 5160 l 16553 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 5100 m 16449 5160 l 16449 5040 l 16553 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4980 m 16449 5040 l 16449 4920 l 16553 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4860 m 16449 4920 l 16449 4800 l 16553 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4740 m 16449 4800 l 16449 4680 l 16553 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4620 m 16449 4680 l 16449 4560 l 16553 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4500 m 16449 4560 l 16449 4440 l 16553 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 4380 m 16449 4440 l 16449 4320 l 16553 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6240 m 16345 6299 l 16345 6179 l 16449 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6120 m 16345 6179 l 16345 6059 l 16449 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6000 m 16345 6059 l 16345 5939 l 16449 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5880 m 16345 5939 l 16345 5819 l 16449 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5760 m 16345 5819 l 16345 5700 l 16449 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5640 m 16345 5700 l 16345 5580 l 16449 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5520 m 16345 5580 l 16345 5460 l 16449 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5400 m 16345 5460 l 16345 5340 l 16449 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5280 m 16345 5340 l 16345 5220 l 16449 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5160 m 16345 5220 l 16345 5100 l 16449 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 5040 m 16345 5100 l 16345 4980 l 16449 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 4920 m 16345 4980 l 16345 4860 l 16449 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 4800 m 16345 4860 l 16345 4740 l 16449 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 4680 m 16345 4740 l 16345 4620 l 16449 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 4560 m 16345 4620 l 16345 4500 l 16449 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 4440 m 16345 4500 l 16345 4380 l 16449 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6300 m 16241 6359 l 16241 6239 l 16345 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6180 m 16241 6239 l 16241 6119 l 16345 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6060 m 16241 6119 l 16241 5999 l 16345 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5940 m 16241 5999 l 16241 5879 l 16345 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5820 m 16241 5879 l 16241 5760 l 16345 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5700 m 16241 5760 l 16241 5640 l 16345 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5580 m 16241 5640 l 16241 5520 l 16345 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5460 m 16241 5520 l 16241 5400 l 16345 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5340 m 16241 5400 l 16241 5280 l 16345 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5220 m 16241 5280 l 16241 5160 l 16345 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 5100 m 16241 5160 l 16241 5040 l 16345 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 4980 m 16241 5040 l 16241 4920 l 16345 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 4860 m 16241 4920 l 16241 4800 l 16345 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 4740 m 16241 4800 l 16241 4680 l 16345 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 4620 m 16241 4680 l 16241 4560 l 16345 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 4500 m 16241 4560 l 16241 4440 l 16345 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6360 m 16137 6419 l 16137 6299 l 16241 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6240 m 16137 6299 l 16137 6179 l 16241 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6120 m 16137 6179 l 16137 6059 l 16241 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6000 m 16137 6059 l 16137 5939 l 16241 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5880 m 16137 5939 l 16137 5819 l 16241 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5760 m 16137 5819 l 16137 5700 l 16241 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5640 m 16137 5700 l 16137 5580 l 16241 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5520 m 16137 5580 l 16137 5460 l 16241 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5400 m 16137 5460 l 16137 5340 l 16241 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5280 m 16137 5340 l 16137 5220 l 16241 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5160 m 16137 5220 l 16137 5100 l 16241 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 5040 m 16137 5100 l 16137 4980 l 16241 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 4920 m 16137 4980 l 16137 4860 l 16241 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 4800 m 16137 4860 l 16137 4740 l 16241 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 4680 m 16137 4740 l 16137 4620 l 16241 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 4560 m 16137 4620 l 16137 4500 l 16241 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6420 m 16033 6479 l 16033 6359 l 16137 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6300 m 16033 6359 l 16033 6239 l 16137 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6180 m 16033 6239 l 16033 6119 l 16137 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6060 m 16033 6119 l 16033 5999 l 16137 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5940 m 16033 5999 l 16033 5879 l 16137 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5820 m 16033 5879 l 16033 5760 l 16137 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5700 m 16033 5760 l 16033 5640 l 16137 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5580 m 16033 5640 l 16033 5520 l 16137 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5460 m 16033 5520 l 16033 5400 l 16137 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5340 m 16033 5400 l 16033 5280 l 16137 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5220 m 16033 5280 l 16033 5160 l 16137 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 5100 m 16033 5160 l 16033 5040 l 16137 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 4980 m 16033 5040 l 16033 4920 l 16137 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 4860 m 16033 4920 l 16033 4800 l 16137 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 4740 m 16033 4800 l 16033 4680 l 16137 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 4620 m 16033 4680 l 16033 4560 l 16137 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6480 m 15930 6539 l 15930 6419 l 16033 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6360 m 15930 6419 l 15930 6299 l 16033 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6240 m 15930 6299 l 15930 6179 l 16033 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6120 m 15930 6179 l 15930 6059 l 16033 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6000 m 15930 6059 l 15930 5939 l 16033 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5880 m 15930 5939 l 15930 5819 l 16033 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5760 m 15930 5819 l 15930 5700 l 16033 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5640 m 15930 5700 l 15930 5580 l 16033 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5520 m 15930 5580 l 15930 5460 l 16033 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5400 m 15930 5460 l 15930 5340 l 16033 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5280 m 15930 5340 l 15930 5220 l 16033 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5160 m 15930 5220 l 15930 5100 l 16033 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 5040 m 15930 5100 l 15930 4980 l 16033 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 4920 m 15930 4980 l 15930 4860 l 16033 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 4800 m 15930 4860 l 15930 4740 l 16033 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 4680 m 15930 4740 l 15930 4620 l 16033 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6540 m 15826 6599 l 15826 6479 l 15930 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6420 m 15826 6479 l 15826 6359 l 15930 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6300 m 15826 6359 l 15826 6239 l 15930 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6180 m 15826 6239 l 15826 6119 l 15930 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6060 m 15826 6119 l 15826 5999 l 15930 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5940 m 15826 5999 l 15826 5879 l 15930 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5820 m 15826 5879 l 15826 5760 l 15930 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5700 m 15826 5760 l 15826 5640 l 15930 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5580 m 15826 5640 l 15826 5520 l 15930 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5460 m 15826 5520 l 15826 5400 l 15930 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5340 m 15826 5400 l 15826 5280 l 15930 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5220 m 15826 5280 l 15826 5160 l 15930 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 5100 m 15826 5160 l 15826 5040 l 15930 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 4980 m 15826 5040 l 15826 4920 l 15930 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 4860 m 15826 4920 l 15826 4800 l 15930 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 4740 m 15826 4800 l 15826 4680 l 15930 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6600 m 15722 6659 l 15722 6539 l 15826 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6480 m 15722 6539 l 15722 6419 l 15826 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6360 m 15722 6419 l 15722 6299 l 15826 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6240 m 15722 6299 l 15722 6179 l 15826 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6120 m 15722 6179 l 15722 6059 l 15826 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6000 m 15722 6059 l 15722 5939 l 15826 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5880 m 15722 5939 l 15722 5819 l 15826 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5760 m 15722 5819 l 15722 5700 l 15826 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5640 m 15722 5700 l 15722 5580 l 15826 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5520 m 15722 5580 l 15722 5460 l 15826 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5400 m 15722 5460 l 15722 5340 l 15826 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5280 m 15722 5340 l 15722 5220 l 15826 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5160 m 15722 5220 l 15722 5100 l 15826 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 5040 m 15722 5100 l 15722 4980 l 15826 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 4920 m 15722 4980 l 15722 4860 l 15826 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 4800 m 15722 4860 l 15722 4740 l 15826 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6660 m 15618 6719 l 15618 6599 l 15722 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6540 m 15618 6599 l 15618 6479 l 15722 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6420 m 15618 6479 l 15618 6359 l 15722 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6300 m 15618 6359 l 15618 6239 l 15722 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6180 m 15618 6239 l 15618 6119 l 15722 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6060 m 15618 6119 l 15618 5999 l 15722 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5940 m 15618 5999 l 15618 5879 l 15722 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5820 m 15618 5879 l 15618 5760 l 15722 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5700 m 15618 5760 l 15618 5640 l 15722 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5580 m 15618 5640 l 15618 5520 l 15722 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5460 m 15618 5520 l 15618 5400 l 15722 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5340 m 15618 5400 l 15618 5280 l 15722 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5220 m 15618 5280 l 15618 5160 l 15722 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 5100 m 15618 5160 l 15618 5040 l 15722 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 4980 m 15618 5040 l 15618 4920 l 15722 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 4860 m 15618 4920 l 15618 4800 l 15722 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 5880 m 17073 5760 l 17177 5820 l 17177 5940 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17073 5760 m 17073 5640 l 17177 5701 l 17177 5820 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17073 5640 m 17073 5520 l 17177 5581 l 17177 5701 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17073 5520 m 17073 5400 l 17177 5461 l 17177 5581 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 5340 m 17177 5220 l 17280 5281 l 17280 5401 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 5220 m 17177 5100 l 17280 5161 l 17280 5281 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 5100 m 17177 4980 l 17280 5041 l 17280 5161 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 4980 m 17177 4860 l 17280 4921 l 17280 5041 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 4860 m 17177 4740 l 17280 4801 l 17280 4921 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 4740 m 17177 4620 l 17280 4681 l 17280 4801 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17177 4620 m 17177 4500 l 17280 4561 l 17280 4681 l cp gs col7 0.60 shd ef gr gs col0 s gr % Polyline n 17280 4440 m 17280 4320 l 17383 4381 l 17383 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4320 m 17280 4200 l 17383 4261 l 17383 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4200 m 17280 4080 l 17383 4141 l 17383 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4080 m 17280 3960 l 17383 4021 l 17383 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 3960 m 17280 3840 l 17383 3901 l 17383 4021 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5820 m 17383 5700 l 17487 5760 l 17487 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5700 m 17383 5580 l 17487 5641 l 17487 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5580 m 17383 5460 l 17487 5521 l 17487 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5460 m 17383 5340 l 17487 5401 l 17487 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5340 m 17383 5220 l 17487 5281 l 17487 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5220 m 17383 5100 l 17487 5161 l 17487 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5100 m 17383 4980 l 17487 5041 l 17487 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4980 m 17383 4860 l 17487 4921 l 17487 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4860 m 17383 4740 l 17487 4801 l 17487 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4740 m 17383 4620 l 17487 4681 l 17487 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4620 m 17383 4500 l 17487 4561 l 17487 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4500 m 17383 4380 l 17487 4441 l 17487 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4380 m 17383 4260 l 17487 4321 l 17487 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4260 m 17383 4140 l 17487 4201 l 17487 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4140 m 17383 4020 l 17487 4081 l 17487 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 4020 m 17383 3900 l 17487 3961 l 17487 4081 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5880 m 17487 5760 l 17591 5820 l 17591 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5760 m 17487 5640 l 17591 5701 l 17591 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5640 m 17487 5520 l 17591 5581 l 17591 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5520 m 17487 5400 l 17591 5461 l 17591 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5400 m 17487 5280 l 17591 5341 l 17591 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5280 m 17487 5160 l 17591 5221 l 17591 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5160 m 17487 5040 l 17591 5101 l 17591 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5040 m 17487 4920 l 17591 4981 l 17591 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4920 m 17487 4800 l 17591 4861 l 17591 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4800 m 17487 4680 l 17591 4741 l 17591 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4680 m 17487 4560 l 17591 4621 l 17591 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4560 m 17487 4440 l 17591 4501 l 17591 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4440 m 17487 4320 l 17591 4381 l 17591 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4320 m 17487 4200 l 17591 4261 l 17591 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4200 m 17487 4080 l 17591 4141 l 17591 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 4080 m 17487 3960 l 17591 4021 l 17591 4141 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5940 m 17591 5820 l 17695 5880 l 17695 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5820 m 17591 5700 l 17695 5760 l 17695 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5700 m 17591 5580 l 17695 5641 l 17695 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5580 m 17591 5460 l 17695 5521 l 17695 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5460 m 17591 5340 l 17695 5401 l 17695 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5340 m 17591 5220 l 17695 5281 l 17695 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5220 m 17591 5100 l 17695 5161 l 17695 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5100 m 17591 4980 l 17695 5041 l 17695 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4980 m 17591 4860 l 17695 4921 l 17695 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4860 m 17591 4740 l 17695 4801 l 17695 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4740 m 17591 4620 l 17695 4681 l 17695 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4620 m 17591 4500 l 17695 4561 l 17695 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4500 m 17591 4380 l 17695 4441 l 17695 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4380 m 17591 4260 l 17695 4321 l 17695 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4260 m 17591 4140 l 17695 4201 l 17695 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 4140 m 17591 4020 l 17695 4081 l 17695 4201 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6000 m 17695 5880 l 17799 5940 l 17799 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5880 m 17695 5760 l 17799 5820 l 17799 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5760 m 17695 5640 l 17799 5701 l 17799 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5640 m 17695 5520 l 17799 5581 l 17799 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5520 m 17695 5400 l 17799 5461 l 17799 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5400 m 17695 5280 l 17799 5341 l 17799 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5280 m 17695 5160 l 17799 5221 l 17799 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5160 m 17695 5040 l 17799 5101 l 17799 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 5040 m 17695 4920 l 17799 4981 l 17799 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4920 m 17695 4800 l 17799 4861 l 17799 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4800 m 17695 4680 l 17799 4741 l 17799 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4680 m 17695 4560 l 17799 4621 l 17799 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4560 m 17695 4440 l 17799 4501 l 17799 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4440 m 17695 4320 l 17799 4381 l 17799 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4320 m 17695 4200 l 17799 4261 l 17799 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 4200 m 17695 4080 l 17799 4141 l 17799 4261 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6060 m 17799 5940 l 17903 6000 l 17903 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5940 m 17799 5820 l 17903 5880 l 17903 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5820 m 17799 5700 l 17903 5760 l 17903 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5700 m 17799 5580 l 17903 5641 l 17903 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5580 m 17799 5460 l 17903 5521 l 17903 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5460 m 17799 5340 l 17903 5401 l 17903 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5340 m 17799 5220 l 17903 5281 l 17903 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5220 m 17799 5100 l 17903 5161 l 17903 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 5100 m 17799 4980 l 17903 5041 l 17903 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4980 m 17799 4860 l 17903 4921 l 17903 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4860 m 17799 4740 l 17903 4801 l 17903 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4740 m 17799 4620 l 17903 4681 l 17903 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4620 m 17799 4500 l 17903 4561 l 17903 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4500 m 17799 4380 l 17903 4441 l 17903 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4380 m 17799 4260 l 17903 4321 l 17903 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 4260 m 17799 4140 l 17903 4201 l 17903 4321 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6120 m 17903 6000 l 18007 6060 l 18007 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6000 m 17903 5880 l 18007 5940 l 18007 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5880 m 17903 5760 l 18007 5820 l 18007 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5760 m 17903 5640 l 18007 5701 l 18007 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5640 m 17903 5520 l 18007 5581 l 18007 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5520 m 17903 5400 l 18007 5461 l 18007 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5400 m 17903 5280 l 18007 5341 l 18007 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5280 m 17903 5160 l 18007 5221 l 18007 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5160 m 17903 5040 l 18007 5101 l 18007 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 5040 m 17903 4920 l 18007 4981 l 18007 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4920 m 17903 4800 l 18007 4861 l 18007 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4800 m 17903 4680 l 18007 4741 l 18007 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4680 m 17903 4560 l 18007 4621 l 18007 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4560 m 17903 4440 l 18007 4501 l 18007 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4440 m 17903 4320 l 18007 4381 l 18007 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 4320 m 17903 4200 l 18007 4261 l 18007 4381 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6180 m 18007 6060 l 18111 6120 l 18111 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6060 m 18007 5940 l 18111 6000 l 18111 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5940 m 18007 5820 l 18111 5880 l 18111 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5820 m 18007 5700 l 18111 5760 l 18111 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5700 m 18007 5580 l 18111 5641 l 18111 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5580 m 18007 5460 l 18111 5521 l 18111 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5460 m 18007 5340 l 18111 5401 l 18111 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5340 m 18007 5220 l 18111 5281 l 18111 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5220 m 18007 5100 l 18111 5161 l 18111 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 5100 m 18007 4980 l 18111 5041 l 18111 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4980 m 18007 4860 l 18111 4921 l 18111 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4860 m 18007 4740 l 18111 4801 l 18111 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4740 m 18007 4620 l 18111 4681 l 18111 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4620 m 18007 4500 l 18111 4561 l 18111 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4500 m 18007 4380 l 18111 4441 l 18111 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 4380 m 18007 4260 l 18111 4321 l 18111 4441 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6240 m 18111 6120 l 18215 6180 l 18215 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6120 m 18111 6000 l 18215 6060 l 18215 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6000 m 18111 5880 l 18215 5940 l 18215 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5880 m 18111 5760 l 18215 5820 l 18215 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5760 m 18111 5640 l 18215 5701 l 18215 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5640 m 18111 5520 l 18215 5581 l 18215 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5520 m 18111 5400 l 18215 5461 l 18215 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5400 m 18111 5280 l 18215 5341 l 18215 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5280 m 18111 5160 l 18215 5221 l 18215 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5160 m 18111 5040 l 18215 5101 l 18215 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 5040 m 18111 4920 l 18215 4981 l 18215 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 4920 m 18111 4800 l 18215 4861 l 18215 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 4800 m 18111 4680 l 18215 4741 l 18215 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 4680 m 18111 4560 l 18215 4621 l 18215 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 4560 m 18111 4440 l 18215 4501 l 18215 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 4440 m 18111 4320 l 18215 4381 l 18215 4501 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6300 m 18215 6180 l 18319 6240 l 18319 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6180 m 18215 6060 l 18319 6120 l 18319 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6060 m 18215 5940 l 18319 6000 l 18319 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5940 m 18215 5820 l 18319 5880 l 18319 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5820 m 18215 5700 l 18319 5760 l 18319 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5700 m 18215 5580 l 18319 5641 l 18319 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5580 m 18215 5460 l 18319 5521 l 18319 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5460 m 18215 5340 l 18319 5401 l 18319 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5340 m 18215 5220 l 18319 5281 l 18319 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5220 m 18215 5100 l 18319 5161 l 18319 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 5100 m 18215 4980 l 18319 5041 l 18319 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 4980 m 18215 4860 l 18319 4921 l 18319 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 4860 m 18215 4740 l 18319 4801 l 18319 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 4740 m 18215 4620 l 18319 4681 l 18319 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 4620 m 18215 4500 l 18319 4561 l 18319 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 4500 m 18215 4380 l 18319 4441 l 18319 4561 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6360 m 18319 6240 l 18423 6300 l 18423 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6240 m 18319 6120 l 18423 6180 l 18423 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6120 m 18319 6000 l 18423 6060 l 18423 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6000 m 18319 5880 l 18423 5940 l 18423 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5880 m 18319 5760 l 18423 5820 l 18423 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5760 m 18319 5640 l 18423 5701 l 18423 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5640 m 18319 5520 l 18423 5581 l 18423 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5520 m 18319 5400 l 18423 5461 l 18423 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5400 m 18319 5280 l 18423 5341 l 18423 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5280 m 18319 5160 l 18423 5221 l 18423 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5160 m 18319 5040 l 18423 5101 l 18423 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 5040 m 18319 4920 l 18423 4981 l 18423 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 4920 m 18319 4800 l 18423 4861 l 18423 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 4800 m 18319 4680 l 18423 4741 l 18423 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 4680 m 18319 4560 l 18423 4621 l 18423 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 4560 m 18319 4440 l 18423 4501 l 18423 4621 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6420 m 18423 6300 l 18527 6360 l 18527 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6300 m 18423 6180 l 18527 6240 l 18527 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6180 m 18423 6060 l 18527 6120 l 18527 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6060 m 18423 5940 l 18527 6000 l 18527 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5940 m 18423 5820 l 18527 5880 l 18527 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5820 m 18423 5700 l 18527 5760 l 18527 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5700 m 18423 5580 l 18527 5641 l 18527 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5580 m 18423 5460 l 18527 5521 l 18527 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5460 m 18423 5340 l 18527 5401 l 18527 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5340 m 18423 5220 l 18527 5281 l 18527 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5220 m 18423 5100 l 18527 5161 l 18527 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 5100 m 18423 4980 l 18527 5041 l 18527 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 4980 m 18423 4860 l 18527 4921 l 18527 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 4860 m 18423 4740 l 18527 4801 l 18527 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 4740 m 18423 4620 l 18527 4681 l 18527 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 4620 m 18423 4500 l 18527 4561 l 18527 4681 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6480 m 18527 6360 l 18630 6420 l 18630 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6360 m 18527 6240 l 18630 6300 l 18630 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6240 m 18527 6120 l 18630 6180 l 18630 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6120 m 18527 6000 l 18630 6060 l 18630 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6000 m 18527 5880 l 18630 5940 l 18630 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5880 m 18527 5760 l 18630 5820 l 18630 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5760 m 18527 5640 l 18630 5701 l 18630 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5640 m 18527 5520 l 18630 5581 l 18630 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5520 m 18527 5400 l 18630 5461 l 18630 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5400 m 18527 5280 l 18630 5341 l 18630 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5280 m 18527 5160 l 18630 5221 l 18630 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5160 m 18527 5040 l 18630 5101 l 18630 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 5040 m 18527 4920 l 18630 4981 l 18630 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 4920 m 18527 4800 l 18630 4861 l 18630 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 4800 m 18527 4680 l 18630 4741 l 18630 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 4680 m 18527 4560 l 18630 4621 l 18630 4741 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6540 m 18630 6420 l 18734 6480 l 18734 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6420 m 18630 6300 l 18734 6360 l 18734 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6300 m 18630 6180 l 18734 6240 l 18734 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6180 m 18630 6060 l 18734 6120 l 18734 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6060 m 18630 5940 l 18734 6000 l 18734 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5940 m 18630 5820 l 18734 5880 l 18734 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5820 m 18630 5700 l 18734 5760 l 18734 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5700 m 18630 5580 l 18734 5641 l 18734 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5580 m 18630 5460 l 18734 5521 l 18734 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5460 m 18630 5340 l 18734 5401 l 18734 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5340 m 18630 5220 l 18734 5281 l 18734 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5220 m 18630 5100 l 18734 5161 l 18734 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 5100 m 18630 4980 l 18734 5041 l 18734 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 4980 m 18630 4860 l 18734 4921 l 18734 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 4860 m 18630 4740 l 18734 4801 l 18734 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 4740 m 18630 4620 l 18734 4681 l 18734 4801 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6600 m 18734 6480 l 18838 6540 l 18838 6660 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6480 m 18734 6360 l 18838 6420 l 18838 6540 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6360 m 18734 6240 l 18838 6300 l 18838 6420 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6240 m 18734 6120 l 18838 6180 l 18838 6300 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6120 m 18734 6000 l 18838 6060 l 18838 6180 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6000 m 18734 5880 l 18838 5940 l 18838 6060 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5880 m 18734 5760 l 18838 5820 l 18838 5940 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5760 m 18734 5640 l 18838 5701 l 18838 5820 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5640 m 18734 5520 l 18838 5581 l 18838 5701 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5520 m 18734 5400 l 18838 5461 l 18838 5581 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5400 m 18734 5280 l 18838 5341 l 18838 5461 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5280 m 18734 5160 l 18838 5221 l 18838 5341 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5160 m 18734 5040 l 18838 5101 l 18838 5221 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 5040 m 18734 4920 l 18838 4981 l 18838 5101 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 4920 m 18734 4800 l 18838 4861 l 18838 4981 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 4800 m 18734 4680 l 18838 4741 l 18838 4861 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6660 m 18838 6540 l 18942 6600 l 18942 6720 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6540 m 18838 6420 l 18942 6480 l 18942 6600 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6420 m 18838 6300 l 18942 6360 l 18942 6480 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6300 m 18838 6180 l 18942 6240 l 18942 6360 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6180 m 18838 6060 l 18942 6120 l 18942 6240 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6060 m 18838 5940 l 18942 6000 l 18942 6120 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5940 m 18838 5820 l 18942 5880 l 18942 6000 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5820 m 18838 5700 l 18942 5760 l 18942 5880 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5700 m 18838 5580 l 18942 5641 l 18942 5760 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5580 m 18838 5460 l 18942 5521 l 18942 5641 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5460 m 18838 5340 l 18942 5401 l 18942 5521 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5340 m 18838 5220 l 18942 5281 l 18942 5401 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5220 m 18838 5100 l 18942 5161 l 18942 5281 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 5100 m 18838 4980 l 18942 5041 l 18942 5161 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 4980 m 18838 4860 l 18942 4921 l 18942 5041 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 4860 m 18838 4740 l 18942 4801 l 18942 4921 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 4440 m 17383 4501 l 17280 4560 l 17177 4500 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 17177 5340 m 17280 5401 l 17177 5460 l 17073 5400 l cp gs col7 0.70 shd ef gr gs col0 s gr % Polyline n 17073 5880 m 17177 5940 l 17073 5999 l 16969 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 5940 m 17073 6000 l 16969 6059 l 16865 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6000 m 16969 6060 l 16865 6119 l 16761 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6060 m 16865 6120 l 16761 6179 l 16657 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6120 m 16761 6180 l 16657 6239 l 16553 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6180 m 16657 6240 l 16553 6299 l 16449 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6240 m 16553 6300 l 16449 6359 l 16345 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6300 m 16449 6360 l 16345 6419 l 16241 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6360 m 16345 6420 l 16241 6479 l 16137 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6420 m 16241 6480 l 16137 6539 l 16033 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6480 m 16137 6540 l 16033 6599 l 15930 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6540 m 16033 6600 l 15930 6659 l 15826 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6600 m 15930 6660 l 15826 6719 l 15722 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15722 6660 m 15826 6720 l 15722 6779 l 15618 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5820 m 17487 5880 l 17383 5939 l 17280 5879 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 5880 m 17383 5940 l 17280 5999 l 17177 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 5940 m 17280 6000 l 17177 6059 l 17073 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6000 m 17177 6060 l 17073 6119 l 16969 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6060 m 17073 6120 l 16969 6179 l 16865 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6120 m 16969 6180 l 16865 6239 l 16761 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6180 m 16865 6240 l 16761 6299 l 16657 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6240 m 16761 6300 l 16657 6359 l 16553 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6300 m 16657 6360 l 16553 6419 l 16449 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6360 m 16553 6420 l 16449 6479 l 16345 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6420 m 16449 6480 l 16345 6539 l 16241 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6480 m 16345 6540 l 16241 6599 l 16137 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6540 m 16241 6600 l 16137 6659 l 16033 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6600 m 16137 6660 l 16033 6719 l 15930 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6660 m 16033 6720 l 15930 6779 l 15826 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15826 6720 m 15930 6780 l 15826 6839 l 15722 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 5880 m 17591 5940 l 17487 5999 l 17383 5939 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 5940 m 17487 6000 l 17383 6059 l 17280 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6000 m 17383 6060 l 17280 6119 l 17177 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6060 m 17280 6120 l 17177 6179 l 17073 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6120 m 17177 6180 l 17073 6239 l 16969 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6180 m 17073 6240 l 16969 6299 l 16865 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6240 m 16969 6300 l 16865 6359 l 16761 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6300 m 16865 6360 l 16761 6419 l 16657 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6360 m 16761 6420 l 16657 6479 l 16553 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6420 m 16657 6480 l 16553 6539 l 16449 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6480 m 16553 6540 l 16449 6599 l 16345 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6540 m 16449 6600 l 16345 6659 l 16241 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6600 m 16345 6660 l 16241 6719 l 16137 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6660 m 16241 6720 l 16137 6779 l 16033 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6720 m 16137 6780 l 16033 6839 l 15930 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 15930 6780 m 16033 6840 l 15930 6899 l 15826 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 5940 m 17695 6000 l 17591 6059 l 17487 5999 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6000 m 17591 6060 l 17487 6119 l 17383 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6060 m 17487 6120 l 17383 6179 l 17280 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6120 m 17383 6180 l 17280 6239 l 17177 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6180 m 17280 6240 l 17177 6299 l 17073 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6240 m 17177 6300 l 17073 6359 l 16969 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6300 m 17073 6360 l 16969 6419 l 16865 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6360 m 16969 6420 l 16865 6479 l 16761 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6420 m 16865 6480 l 16761 6539 l 16657 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6480 m 16761 6540 l 16657 6599 l 16553 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6540 m 16657 6600 l 16553 6659 l 16449 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6600 m 16553 6660 l 16449 6719 l 16345 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6660 m 16449 6720 l 16345 6779 l 16241 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6720 m 16345 6780 l 16241 6839 l 16137 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6780 m 16241 6840 l 16137 6899 l 16033 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16033 6840 m 16137 6900 l 16033 6959 l 15930 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6000 m 17799 6060 l 17695 6119 l 17591 6059 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6060 m 17695 6120 l 17591 6179 l 17487 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6120 m 17591 6180 l 17487 6239 l 17383 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6180 m 17487 6240 l 17383 6299 l 17280 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6240 m 17383 6300 l 17280 6359 l 17177 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6300 m 17280 6360 l 17177 6419 l 17073 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6360 m 17177 6420 l 17073 6479 l 16969 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6420 m 17073 6480 l 16969 6539 l 16865 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6480 m 16969 6540 l 16865 6599 l 16761 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6540 m 16865 6600 l 16761 6659 l 16657 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6600 m 16761 6660 l 16657 6719 l 16553 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6660 m 16657 6720 l 16553 6779 l 16449 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6720 m 16553 6780 l 16449 6839 l 16345 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6780 m 16449 6840 l 16345 6899 l 16241 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6840 m 16345 6900 l 16241 6959 l 16137 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16137 6900 m 16241 6960 l 16137 7019 l 16033 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6060 m 17903 6120 l 17799 6179 l 17695 6119 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6120 m 17799 6180 l 17695 6239 l 17591 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6180 m 17695 6240 l 17591 6299 l 17487 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6240 m 17591 6300 l 17487 6359 l 17383 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6300 m 17487 6360 l 17383 6419 l 17280 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6360 m 17383 6420 l 17280 6479 l 17177 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6420 m 17280 6480 l 17177 6539 l 17073 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6480 m 17177 6540 l 17073 6599 l 16969 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6540 m 17073 6600 l 16969 6659 l 16865 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6600 m 16969 6660 l 16865 6719 l 16761 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6660 m 16865 6720 l 16761 6779 l 16657 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6720 m 16761 6780 l 16657 6839 l 16553 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6780 m 16657 6840 l 16553 6899 l 16449 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6840 m 16553 6900 l 16449 6959 l 16345 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 6900 m 16449 6960 l 16345 7019 l 16241 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16241 6960 m 16345 7020 l 16241 7079 l 16137 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6120 m 18007 6180 l 17903 6239 l 17799 6179 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6180 m 17903 6240 l 17799 6299 l 17695 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6240 m 17799 6300 l 17695 6359 l 17591 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6300 m 17695 6360 l 17591 6419 l 17487 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6360 m 17591 6420 l 17487 6479 l 17383 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6420 m 17487 6480 l 17383 6539 l 17280 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6480 m 17383 6540 l 17280 6599 l 17177 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6540 m 17280 6600 l 17177 6659 l 17073 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6600 m 17177 6660 l 17073 6719 l 16969 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6660 m 17073 6720 l 16969 6779 l 16865 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6720 m 16969 6780 l 16865 6839 l 16761 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6780 m 16865 6840 l 16761 6899 l 16657 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6840 m 16761 6900 l 16657 6959 l 16553 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 6900 m 16657 6960 l 16553 7019 l 16449 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 6960 m 16553 7020 l 16449 7079 l 16345 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16345 7020 m 16449 7080 l 16345 7139 l 16241 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6180 m 18111 6240 l 18007 6299 l 17903 6239 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6240 m 18007 6300 l 17903 6359 l 17799 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6300 m 17903 6360 l 17799 6419 l 17695 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6360 m 17799 6420 l 17695 6479 l 17591 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6420 m 17695 6480 l 17591 6539 l 17487 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6480 m 17591 6540 l 17487 6599 l 17383 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6540 m 17487 6600 l 17383 6659 l 17280 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6600 m 17383 6660 l 17280 6719 l 17177 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6660 m 17280 6720 l 17177 6779 l 17073 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6720 m 17177 6780 l 17073 6839 l 16969 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6780 m 17073 6840 l 16969 6899 l 16865 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6840 m 16969 6900 l 16865 6959 l 16761 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 6900 m 16865 6960 l 16761 7019 l 16657 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 6960 m 16761 7020 l 16657 7079 l 16553 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 7020 m 16657 7080 l 16553 7139 l 16449 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16449 7080 m 16553 7140 l 16449 7199 l 16345 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6240 m 18215 6300 l 18111 6359 l 18007 6299 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6300 m 18111 6360 l 18007 6419 l 17903 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6360 m 18007 6420 l 17903 6479 l 17799 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6420 m 17903 6480 l 17799 6539 l 17695 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6480 m 17799 6540 l 17695 6599 l 17591 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6540 m 17695 6600 l 17591 6659 l 17487 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6600 m 17591 6660 l 17487 6719 l 17383 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6660 m 17487 6720 l 17383 6779 l 17280 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6720 m 17383 6780 l 17280 6839 l 17177 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6780 m 17280 6840 l 17177 6899 l 17073 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6840 m 17177 6900 l 17073 6959 l 16969 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 6900 m 17073 6960 l 16969 7019 l 16865 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 6960 m 16969 7020 l 16865 7079 l 16761 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 7020 m 16865 7080 l 16761 7139 l 16657 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 7080 m 16761 7140 l 16657 7199 l 16553 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16553 7140 m 16657 7200 l 16553 7259 l 16449 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6300 m 18319 6360 l 18215 6419 l 18111 6359 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6360 m 18215 6420 l 18111 6479 l 18007 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6420 m 18111 6480 l 18007 6539 l 17903 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6480 m 18007 6540 l 17903 6599 l 17799 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6540 m 17903 6600 l 17799 6659 l 17695 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6600 m 17799 6660 l 17695 6719 l 17591 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6660 m 17695 6720 l 17591 6779 l 17487 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6720 m 17591 6780 l 17487 6839 l 17383 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6780 m 17487 6840 l 17383 6899 l 17280 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6840 m 17383 6900 l 17280 6959 l 17177 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 6900 m 17280 6960 l 17177 7019 l 17073 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 6960 m 17177 7020 l 17073 7079 l 16969 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 7020 m 17073 7080 l 16969 7139 l 16865 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 7080 m 16969 7140 l 16865 7199 l 16761 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 7140 m 16865 7200 l 16761 7259 l 16657 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16657 7200 m 16761 7260 l 16657 7319 l 16553 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6360 m 18423 6420 l 18319 6479 l 18215 6419 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6420 m 18319 6480 l 18215 6539 l 18111 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6480 m 18215 6540 l 18111 6599 l 18007 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6540 m 18111 6600 l 18007 6659 l 17903 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6600 m 18007 6660 l 17903 6719 l 17799 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6660 m 17903 6720 l 17799 6779 l 17695 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6720 m 17799 6780 l 17695 6839 l 17591 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6780 m 17695 6840 l 17591 6899 l 17487 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6840 m 17591 6900 l 17487 6959 l 17383 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 6900 m 17487 6960 l 17383 7019 l 17280 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 6960 m 17383 7020 l 17280 7079 l 17177 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 7020 m 17280 7080 l 17177 7139 l 17073 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 7080 m 17177 7140 l 17073 7199 l 16969 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 7140 m 17073 7200 l 16969 7259 l 16865 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 7200 m 16969 7260 l 16865 7319 l 16761 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16761 7260 m 16865 7320 l 16761 7379 l 16657 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6420 m 18527 6480 l 18423 6539 l 18319 6479 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6480 m 18423 6540 l 18319 6599 l 18215 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6540 m 18319 6600 l 18215 6659 l 18111 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6600 m 18215 6660 l 18111 6719 l 18007 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6660 m 18111 6720 l 18007 6779 l 17903 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6720 m 18007 6780 l 17903 6839 l 17799 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6780 m 17903 6840 l 17799 6899 l 17695 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6840 m 17799 6900 l 17695 6959 l 17591 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 6900 m 17695 6960 l 17591 7019 l 17487 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 6960 m 17591 7020 l 17487 7079 l 17383 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 7020 m 17487 7080 l 17383 7139 l 17280 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 7080 m 17383 7140 l 17280 7199 l 17177 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 7140 m 17280 7200 l 17177 7259 l 17073 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 7200 m 17177 7260 l 17073 7319 l 16969 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 7260 m 17073 7320 l 16969 7379 l 16865 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16865 7320 m 16969 7380 l 16865 7439 l 16761 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6480 m 18630 6540 l 18527 6599 l 18423 6539 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6540 m 18527 6600 l 18423 6659 l 18319 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6600 m 18423 6660 l 18319 6719 l 18215 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6660 m 18319 6720 l 18215 6779 l 18111 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6720 m 18215 6780 l 18111 6839 l 18007 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6780 m 18111 6840 l 18007 6899 l 17903 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6840 m 18007 6900 l 17903 6959 l 17799 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 6900 m 17903 6960 l 17799 7019 l 17695 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 6960 m 17799 7020 l 17695 7079 l 17591 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 7020 m 17695 7080 l 17591 7139 l 17487 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 7080 m 17591 7140 l 17487 7199 l 17383 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 7140 m 17487 7200 l 17383 7259 l 17280 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 7200 m 17383 7260 l 17280 7319 l 17177 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 7260 m 17280 7320 l 17177 7379 l 17073 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 7320 m 17177 7380 l 17073 7439 l 16969 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 16969 7380 m 17073 7440 l 16969 7499 l 16865 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6540 m 18734 6600 l 18630 6659 l 18527 6599 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6600 m 18630 6660 l 18527 6719 l 18423 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6660 m 18527 6720 l 18423 6779 l 18319 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6720 m 18423 6780 l 18319 6839 l 18215 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6780 m 18319 6840 l 18215 6899 l 18111 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6840 m 18215 6900 l 18111 6959 l 18007 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 6900 m 18111 6960 l 18007 7019 l 17903 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 6960 m 18007 7020 l 17903 7079 l 17799 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 7020 m 17903 7080 l 17799 7139 l 17695 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 7080 m 17799 7140 l 17695 7199 l 17591 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 7140 m 17695 7200 l 17591 7259 l 17487 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 7200 m 17591 7260 l 17487 7319 l 17383 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 7260 m 17487 7320 l 17383 7379 l 17280 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 7320 m 17383 7380 l 17280 7439 l 17177 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 7380 m 17280 7440 l 17177 7499 l 17073 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17073 7440 m 17177 7500 l 17073 7559 l 16969 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6600 m 18838 6660 l 18734 6719 l 18630 6659 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6660 m 18734 6720 l 18630 6779 l 18527 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6720 m 18630 6780 l 18527 6839 l 18423 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6780 m 18527 6840 l 18423 6899 l 18319 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6840 m 18423 6900 l 18319 6959 l 18215 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 6900 m 18319 6960 l 18215 7019 l 18111 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 6960 m 18215 7020 l 18111 7079 l 18007 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 7020 m 18111 7080 l 18007 7139 l 17903 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 7080 m 18007 7140 l 17903 7199 l 17799 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 7140 m 17903 7200 l 17799 7259 l 17695 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 7200 m 17799 7260 l 17695 7319 l 17591 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 7260 m 17695 7320 l 17591 7379 l 17487 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 7320 m 17591 7380 l 17487 7439 l 17383 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 7380 m 17487 7440 l 17383 7499 l 17280 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 7440 m 17383 7500 l 17280 7559 l 17177 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17177 7500 m 17280 7560 l 17177 7619 l 17073 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18838 6660 m 18942 6720 l 18838 6779 l 18734 6719 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18734 6720 m 18838 6780 l 18734 6839 l 18630 6779 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18630 6780 m 18734 6840 l 18630 6899 l 18527 6839 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18527 6840 m 18630 6900 l 18527 6959 l 18423 6899 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18423 6900 m 18527 6960 l 18423 7019 l 18319 6959 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18319 6960 m 18423 7020 l 18319 7079 l 18215 7019 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18215 7020 m 18319 7080 l 18215 7139 l 18111 7079 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18111 7080 m 18215 7140 l 18111 7199 l 18007 7139 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 18007 7140 m 18111 7200 l 18007 7259 l 17903 7199 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17903 7200 m 18007 7260 l 17903 7319 l 17799 7259 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17799 7260 m 17903 7320 l 17799 7379 l 17695 7319 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17695 7320 m 17799 7380 l 17695 7439 l 17591 7379 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17591 7380 m 17695 7440 l 17591 7499 l 17487 7439 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17487 7440 m 17591 7500 l 17487 7559 l 17383 7499 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17383 7500 m 17487 7560 l 17383 7619 l 17280 7559 l cp gs col7 1.00 shd ef gr gs col0 s gr % Polyline n 17280 7560 m 17383 7620 l 17280 7679 l 17177 7619 l cp gs col7 1.00 shd ef gr gs col0 s gr % here ends figure; $F2psEnd rs showpage gfan0.7/doc/apptable.tex0000644000175000017500000014047714656430617014640 0ustar andersanders{\subsection{gfan\_bases}\label{applist:_bases} This is a program for computing all reduced Gr\"obner bases of a polynomial ideal. It takes the ring and a generating set for the ideal as input. By default the enumeration is done by an almost memoryless reverse search. If the ideal is symmetric the symmetry option is useful and enumeration will be done up to symmetry using a breadth first search. The program needs a starting Gr\"obner basis to do its computations. If the -g option is not specified it will compute one using Buchberger's algorithm. \newline {\bf Options:} \begin{description} \item[-g]Tells the program that the input is already a Gr\"obner basis (with the initial term of each polynomial being the first ones listed). Use this option if it takes too much time to compute the starting (standard degree lexicographic) Gr\"obner basis and the input is already a Gr\"obner basis. \item[-\hspace{0.013cm}-symmetry]Tells the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the ideal. The program checks that the ideal stays fixed when permuting the variables with respect to elements in the group. The program uses breadth first search to compute the set of reduced Gr\"obner bases up to symmetry with respect to the specified subgroup. \item[-e]Echo. Output the generators for the symmetry group. \item[-\hspace{0.013cm}-disableSymmetryTest]When using -\hspace{0.013cm}-symmetry this option will disable the check that the group read off from the input actually is a symmetry group with respect to the input ideal. \item[-\hspace{0.013cm}-parameters value]With this option you can specify how many variables to treat as parameters instead of variables. This makes it possible to do computations where the coefficient field is the field of rational functions in the parameters.\item[-\hspace{0.013cm}-interrupt value]Interrupt the enumeration after a specified number of facets have been computed (works for usual symmetric traversals, but may not work in general for non-symmetric traversals or for traversals restricted to fans).\end{description} {\subsection{gfan\_buchberger}\label{applist:_buchberger} This program computes a reduced lexicographic Gr\"obner basis of the polynomial ideal given as input. The default behavior is to use Buchberger's algorithm. The ordering of the variables is $a>b>c...$ (assuming that the ring is Q[a,b,c,...]). \newline {\bf Options:} \begin{description} \item[-w]Compute a Gr\"obner basis with respect to a degree lexicographic order with $a>b>c...$ instead. The degrees are given by a weight vector which is read from the input after the generating set has been read. \item[-r]Use the reverse lexicographic order (or the reverse lexicographic order as a tie breaker if -w is used). The input must be homogeneous if the pure reverse lexicographic order is chosen. Ignored if -W is used. \item[-W]Do a Gr\"obner walk. The input must be a minimal Gr\"obner basis. If -W is used -w is ignored. \item[-g]Do a generic Gr\"obner walk. The input must be homogeneous and must be a minimal Gr\"obner basis with respect to the reverse lexicographic term order. The target term order is always lexicographic. The -W option must be used. \item[-\hspace{0.013cm}-parameters value]With this option you can specify how many variables to treat as parameters instead of variables. This makes it possible to do computations where the coefficient field is the field of rational functions in the parameters.\end{description} {\subsection{gfan\_combinerays}\label{applist:_combinerays} This program combines rays from the specified polymake file by adding according to a list of vectors of indices given on the standard input. \newline {\bf Options:} \begin{description} \item[-i value]Specify the name of the input file.\item[-\hspace{0.013cm}-section value]Specify a section of the polymake file to use as input, rather than standard input.\end{description} {\subsection{gfan\_doesidealcontain}\label{applist:_doesidealcontain} This program takes a marked Gr\"obner basis of an ideal I and a set of polynomials on its input and tests if the polynomial set is contained in I by applying the division algorithm for each element. The output is 1 for true and 0 for false. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-remainder]Tell the program to output the remainders of the divisions rather than outputting 0 or 1.\item[-\hspace{0.013cm}-multiplier]Reads in a polynomial that will be multiplied to the polynomial to be divided before doing the division.\end{description} {\subsection{gfan\_fancommonrefinement}\label{applist:_fancommonrefinement} This program takes two polyhedral fans and computes their common refinement. \newline {\bf Options:} \begin{description} \item[-i1 value]Specify the name of the first input file.\item[-i2 value]Specify the name of the second input file.\item[-\hspace{0.013cm}-stable]Compute the stable intersection.\end{description} {\subsection{gfan\_fanhomology}\label{applist:_fanhomology} This program takes a polyhedral fan and computes its reduced homology groups. Of course the support of a fan is contractible, so what is really computed is the reduced homology groups of the support of the fan after quotienting out with the lineality space and intersecting with a sphere. Notice that taking the quotient with the lineality space results in an inverted suspension which just results in a shift of the reduced homology groups. \newline {\bf Options:} \begin{description} \item[-i value]Specify the name of the input file.\item[-\hspace{0.013cm}-no-optimize]Disable preprocessing of boundary maps before doing lattice computations.\end{description} {\subsection{gfan\_fanisbalanced}\label{applist:_fanisbalanced} This program checks if a fan is balanced \newline {\bf Options:} \begin{description} \item[-i value]Specify the name of the input file.\item[-\hspace{0.013cm}-makeBalanced]Assign positive multiplicities to cones to make the fan balanced instead. Fan is assumed to be pure.\item[-\hspace{0.013cm}-facetComplex]When making the fan balanced, first take facet complex\item[-\hspace{0.013cm}-cone]Output cone of all balanced weight functions.\end{description} {\subsection{gfan\_fanlink}\label{applist:_fanlink} This program takes a polyhedral fan and a vector and computes the link of the polyhedral fan around that vertex. The link will have lineality space dimension equal to the dimension of the relative open polyhedral cone of the original fan containing the vector. \newline {\bf Options:} \begin{description} \item[-i value]Specify the name of the input file.\item[-\hspace{0.013cm}-symmetry]Reads in a fan stored with symmetry. The generators of the symmetry group must be given on the standard input. \item[-\hspace{0.013cm}-star]Computes the star instead. The star is defined as the smallest polyhedral fan containing all cones of the original fan containing the vector.\end{description} {\subsection{gfan\_fanproduct}\label{applist:_fanproduct} This program takes two polyhedral fans and computes their product. \newline {\bf Options:} \begin{description} \item[-i1 value]Specify the name of the first input file.\item[-i2 value]Specify the name of the second input file.\end{description} {\subsection{gfan\_fansubfan}\label{applist:_fansubfan} This program takes a polyhedral fan and a list of vectors and computes the smallest subfan of the fan having the list of vectors in its support. \newline {\bf Options:} \begin{description} \item[-i value]Specify the name of the input file.\item[-\hspace{0.013cm}-symmetry]Reads in the cone stored with symmetry. The generators of the symmetry group must be given on the standard input. \end{description} {\subsection{gfan\_genericlinearchange}\label{applist:_genericlinearchange} This program takes a list of polynomials and performs a generic linear change of coordinates by introducing nxn new variables. {\subsection{gfan\_groebnercone}\label{applist:_groebnercone} This program computes a Gr\"obner cone. Three different cases are handled. The input may be a marked reduced Gr\"obner basis in which case its Gr\"obner cone is computed. The input may be just a marked minimal basis in which case the cone computed is not a Gr\"obner cone in the usual sense but smaller. (These cones are described in [Fukuda, Jensen, Lauritzen, Thomas]). The third possible case is that the Gr\"obner cone is possibly lower dimensional and given by a pair of Gr\"obner bases as it is useful to do for tropical varieties, see option -\hspace{0.013cm}-pair. The facets of the cone can be read off in section FACETS and the equations in section IMPLIED\_EQUATIONS. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-restrict]Add an inequality for each coordinate, so that the the cone is restricted to the non-negative orthant.\item[-\hspace{0.013cm}-pair]The Gr\"obner cone is given by a pair of compatible Gr\"obner bases. The first basis is for the initial ideal and the second for the ideal itself. See the tropical section of the manual.\item[-\hspace{0.013cm}-asfan]Writes the cone as a polyhedral fan with all its faces instead. In this way the extreme rays of the cone are also computed.\item[-\hspace{0.013cm}-vectorinput]Compute a cone given list of inequalities rather than a Gr\"obner cone. The input is an integer which specifies the dimension of the ambient space, a list of inequalities given as vectors and a list of equations.\end{description} {\subsection{gfan\_groebnerfan}\label{applist:_groebnerfan} This is a program for computing the Gr\"obner fan of a polynomial ideal as a polyhedral complex. It takes a generating set for the ideal as input. If the ideal is symmetric the symmetry option is useful and enumeration will be done up to symmetry. The program needs a starting Gr\"obner basis to do its computations. If the -g option is not specified it will compute one using Buchberger's algorithm. \newline {\bf Options:} \begin{description} \item[-g]Tells the program that the input is already a Gr\"obner basis (with the initial term of each polynomial being the first ones listed). Use this option if it takes too much time to compute the starting (standard degree lexicographic) Gr\"obner basis and the input is already a Gr\"obner basis. \item[-\hspace{0.013cm}-symmetry]Tells the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the ideal. The program checks that the ideal stays fixed when permuting the variables with respect to elements in the group. The program uses breadth first search to compute the set of reduced Gr\"obner bases up to symmetry with respect to the specified subgroup. \item[-\hspace{0.013cm}-disableSymmetryTest]When using -\hspace{0.013cm}-symmetry this option will disable the check that the group read off from the input actually is a symmetry group with respect to the input ideal. \item[-\hspace{0.013cm}-restrictingfan value]Specify the name of a file containing a polyhedral fan in Polymake format. The computation of the Gr\"obner fan will be restricted to this fan. If the -\hspace{0.013cm}-symmetry option is used then this restricting fan must be invariant under the symmetry and the orbits in the file must be with respect to the specified group of symmetries. The orbits of maximal cones of the file are then read in rather than the maximal cones. \item[-\hspace{0.013cm}-parameters value]With this option you can specify how many variables to treat as parameters instead of variables. This makes it possible to do computations where the coefficient field is the field of rational functions in the parameters.\item[-\hspace{0.013cm}-nocones]Tells the program not to output the CONES and MAXIMAL\_CONES sections, but still output CONES\_COMPRESSED and MAXIMAL\_CONES\_COMPRESSED if -\hspace{0.013cm}-symmetry is used.\item[-\hspace{0.013cm}-interrupt value]Interrupt the enumeration after a specified number of facets have been computed (works for usual symmetric traversals, but may not work in general for non-symmetric traversals or for traversals restricted to fans).\end{description} {\subsection{gfan\_homogeneityspace}\label{applist:_homogeneityspace} This program computes the homogeneity space of a list of polynomials - as a cone. Thus generators for the homogeneity space are found in the section LINEALITY\_SPACE. If you wish the homogeneity space of an ideal you should first compute a set of homogeneous generators and call the program on these. A reduced Gr\"obner basis will always suffice for this purpose. {\subsection{gfan\_homogenize}\label{applist:_homogenize} This program homogenises a list of polynomials by introducing an extra variable. The name of the variable to be introduced is read from the input after the list of polynomials. Without the -w option the homogenisation is done with respect to total degree. Example: Input: Q[x,y]\{y-1\} z Output: Q[x,y,z]\{y-z\} \newline {\bf Options:} \begin{description} \item[-i]Treat input as an ideal. This will make the program compute the homogenisation of the input ideal. This is done by computing a degree Gr\"obner basis and homogenising it.\item[-w]Specify a homogenisation vector. The length of the vector must be the same as the number of variables in the ring. The vector is read from the input after the list of polynomials. \item[-H]Let the name of the new variable be H rather than reading in a name from the input.\end{description} {\subsection{gfan\_initialforms}\label{applist:_initialforms} This program converts a list of polynomials to a list of their initial forms with respect to the vector given after the list. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-ideal]Treat input as an ideal. This will make the program compute the initial ideal of the ideal generated by the input polynomials. The computation is done by computing a Gr\"obner basis with respect to the given vector. The vector must be positive or the input polynomials must be homogeneous in a positive grading. None of these conditions are checked by the program. \item[-\hspace{0.013cm}-pair]Produce a pair of polynomial lists. Used together with -\hspace{0.013cm}-ideal this option will also write a compatible reduced Gr\"obner basis for the input ideal to the output. This is useful for finding the Gr\"obner cone of a non-monomial initial ideal. \item[-\hspace{0.013cm}-mark]If the -\hspace{0.013cm}-pair option is and the -\hspace{0.013cm}-ideal option is not used this option will still make sure that the second output basis is marked consistently with the vector.\item[-\hspace{0.013cm}-list]Read in a list of vectors instead of a single vector and produce a list of polynomial sets as output.\end{description} {\subsection{gfan\_interactive}\label{applist:_interactive} This is a program for doing interactive walks in the Gr\"obner fan of an ideal. The input is a Gr\"obner basis defining the starting Gr\"obner cone of the walk. The program will list all flippable facets of the Gr\"obner cone and ask the user to choose one. The user types in the index (number) of the facet in the list. The program will walk through the selected facet and display the new Gr\"obner basis and a list of new facet normals for the user to choose from. Since the program reads the user's choices through the the standard input it is recommended not to redirect the standard input for this program. \newline {\bf Options:} \begin{description} \item[-L]Latex mode. The program will try to show the current Gr\"obner basis in a readable form by invoking LaTeX and xdvi. \item[-x]Exit immediately. \item[-f]Tell the program to list the flipped reduced Gr\"obner basis of the initial ideal for each flippable wall in the current Gr\"obner cone. \item[-w]Tell the program to list (a Gr\"obner basis with respect to the current term order for) the initial ideal for each flippable wall in the current Gr\"obner cone. \item[-i]Tell the program to list the defining set of inequalities of the non-restricted Gr\"obner cone as a set of vectors after having listed the current Gr\"obner basis. \item[-W]Print weight vector. This will make the program print an interior vector of the current Gr\"obner cone and a relative interior point for each flippable facet of the current Gr\"obner cone. \item[-\hspace{0.013cm}-tropical]Traverse a tropical variety interactively.\end{description} {\subsection{gfan\_ismarkedgroebnerbasis}\label{applist:_ismarkedgroebnerbasis} This program checks if a set of marked polynomials is a Gr\"obner basis with respect to its marking. First it is checked if the markings are consistent with respect to a positive vector. Then Buchberger's S-criterion is checked. The output is boolean value. {\subsection{gfan\_krulldimension}\label{applist:_krulldimension} Takes an ideal $I$ and computes the Krull dimension of R/I where R is the polynomial ring. This is done by first computing a Gr\"obner basis. \newline {\bf Options:} \begin{description} \item[-g]Tell the program that the input is already a reduced Gr\"obner basis.\end{description} {\subsection{gfan\_latticeideal}\label{applist:_latticeideal} This program computes the lattice ideal of a lattice. The input is a list of generators for the lattice. \newline {\bf Options:} \begin{description} \item[-t]Compute the toric ideal of the matrix whose rows are given on the input instead.\item[-\hspace{0.013cm}-convert]Does not do any computation, but just converts the vectors to binomials.\end{description} {\subsection{gfan\_leadingterms}\label{applist:_leadingterms} This program converts a list of polynomials to a list of their leading terms. \newline {\bf Options:} \begin{description} \item[-m]Do the same thing for a list of polynomial sets. That is, output the set of sets of leading terms. \end{description} {\subsection{gfan\_list}\label{applist:_list} This program lists all subcommands of the Gfan installation. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-hidden]Show hidden commands which are not officially supported.\end{description} {\subsection{gfan\_markpolynomialset}\label{applist:_markpolynomialset} This program marks a set of polynomials with respect to the vector given at the end of the input, meaning that the largest terms are moved to the front. In case of a tie the lexicographic term order with $a>b>c...$ is used to break it. {\subsection{gfan\_minkowskisum}\label{applist:_minkowskisum} This is a program for computing the normal fan of the Minkowski sum of the Newton polytopes of a list of polynomials. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-symmetry]Tells the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the ideal. The program checks that the ideal stays fixed when permuting the variables with respect to elements in the group. The program uses breadth first search to compute the set of reduced Gr\"obner bases up to symmetry with respect to the specified subgroup. \item[-\hspace{0.013cm}-disableSymmetryTest]When using -\hspace{0.013cm}-symmetry this option will disable the check that the group read off from the input actually is a symmetry group with respect to the input ideal. \item[-\hspace{0.013cm}-nocones]Tell the program to not list cones in the output.\end{description} {\subsection{gfan\_minors}\label{applist:_minors} This program will generate the r*r minors of a d*n matrix of indeterminates. \newline {\bf Options:} \begin{description} \item[-r value]Specify r.\item[-d value]Specify d.\item[-n value]Specify n.\item[-M2]Use Macaulay2 conventions for order of variables.\item[-\hspace{0.013cm}-names]Assign names to the minors.\item[-\hspace{0.013cm}-dressian]Produce tropical defining the Dressian(3,n) instead. (The signs may not be correct, that is the equations may not be Pluecker relations.)\item[-\hspace{0.013cm}-pluckersymmetries]Do nothing but produce symmetry generators for the Pluecker ideal.\item[-\hspace{0.013cm}-symmetry]Produces a list of generators for the group of symmetries keeping the set of minors fixed. (Only without -\hspace{0.013cm}-names).\item[-\hspace{0.013cm}-parametrize]Parametrize the set of d times n matrices of Barvinok rank less than or equal to r-1 by a list of tropical polynomials.\item[-\hspace{0.013cm}-ultrametric]Produce tropical equations cutting out the ultrametrics.\end{description} {\subsection{gfan\_mixedvolume}\label{applist:_mixedvolume} This program computes the mixed volume of the Newton polytopes of a list of polynomials. The ring is specified on the input. After this follows the list of polynomials. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-vectorinput]Read in a list of point configurations instead of a polynomial ring and a list of polynomials.\item[-\hspace{0.013cm}-cyclic value]Use cyclic-n example instead of reading input.\item[-\hspace{0.013cm}-noon value]Use Noonburg-n example instead of reading input.\item[-\hspace{0.013cm}-chandra value]Use Chandrasekhar-n example instead of reading input.\item[-\hspace{0.013cm}-katsura value]Use Katsura-n example instead of reading input.\item[-\hspace{0.013cm}-gaukwa value]Use Gaukwa-n example instead of reading input.\item[-\hspace{0.013cm}-eco value]Use Eco-n example instead of reading input.\item[-j value]Number of threads\end{description} {\subsection{gfan\_overintegers}\label{applist:_overintegers} This program is an experimental implementation of Gr\"obner bases for ideals in Z[x\_1,...,x\_n]. Several operations are supported by specifying the appropriate option: (1) computation of the reduced Gr\"obner basis with respect to a given vector (tiebroken lexicographically), (2) computation of an initial ideal, (3) computation of the Gr\"obner fan, (4) computation of a single Gr\"obner cone. Since Gfan only knows polynomial rings with coefficients being elements of a field, the ideal is specified by giving a set of polynomials in the polynomial ring Q[x\_1,...,x\_n]. That is, by using Q instead of Z when specifying the ring. The ideal MUST BE HOMOGENEOUS (in a positive grading) for computation of the Gr\"obner fan. Non-homogeneous ideals are allowed for the other computations if the specified weight vectors are positive. NOTE: This program is experimental and expected to change behaviour in future releases, so don't write your SAGE and M2 interfaces just yet. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-groebnerBasis]Asks the program to compute a marked Gr\"obner basis with respect to a weight vector tie-broken lexicographically. The input order is: Ring ideal vector. \item[-\hspace{0.013cm}-initialIdeal]Asks the program to compute an initial ideal with respect to a vector. The input order is: Ring ideal vector. \item[-\hspace{0.013cm}-groebnerFan]Asks the program to compute the Gr\"obner fan. The input order is: Ring ideal. \item[-\hspace{0.013cm}-groebnerCone]Asks the program to compute a single Gr\"obner cone containing the specified vector in its relative interior. The output is stored as a fan. The input order is: Ring ideal vector.\item[-m]For the operations taking a vector as input, read in a list of vectors instead, and perform the operation for each vector in the list.\item[-g]Tells the program that the input is already a Gr\"obner basis (with the initial term of each polynomial being the first ones listed). Use this option if the usual -\hspace{0.013cm}-groebnerFan is too slow. \end{description} {\subsection{gfan\_padic}\label{applist:_padic} This program is an experimental implementation of p-adic Gr\"obner bases as proposed by Diane Maclagan. Several operations are supported by specifying the appropriate option: (1) computation of Gr\"obner basis with respect to a given vector (tiebroken lexicographically), (2) computation of the p-adic initial ideal, (3) computation of the p-adic Gr\"obner complex as defined by Maclagan and Sturmfels, (4) computation of a single polyhedron of the p-adic Gr\"obner complex. The input ideal should be an ideal of the polynomial ring with coefficient field Q. The valuation is specified with the option -p. The ideal MUST BE HOMOGENEOUS (in a positive grading). Since gfan can only handle fans and not polyhedral complexes in general, what is computed as the Gr\"obner complex is actually the "fan over" the complex - in other words, the first coordinate is supposed to be 1 in the output fan. Similarly, the weight vectors must be specified in an homogeneous way, for example by adding an additional 1 entry as first coordinate. (If fractions are needed, use the entry as a common denominator.) NOTE: This program is experimental and expected to change behaviour in future releases, so don't write your SAGE and M2 interfaces just yet. In particular this program uses the tropical minimum-convention!! \newline {\bf Options:} \begin{description} \item[-p value]Defines the prime used for the valuation.\item[-\hspace{0.013cm}-groebnerBasis]Asks the program to compute a marked Gr\"obner basis with respect to a weight vector (tie-broken lexicographically). The input order is: Ring ideal vector. \item[-\hspace{0.013cm}-initialIdeal]Asks the program to compute an initial ideal with respect to a vector. The input order is: Ring ideal vector. \item[-\hspace{0.013cm}-groebnerComplex]Asks the program to compute the p-adic Gr\"obner complex. The input order is: Ring ideal. \item[-\hspace{0.013cm}-groebnerPolyhedron]Asks the program to compute a single polyhedron of the Gr\"obner complex containing the specified vector in its relative interior. The output is stored as a fan. The input order is: Ring ideal vector.\item[-m]For the operations taking a vector as input, read in a list of vectors instead, and perform the operation for each vector in the list.\end{description} {\subsection{gfan\_polynomialsetunion}\label{applist:_polynomialsetunion} This program computes the union of a list of polynomial sets given as input. The polynomials must all belong to the same ring. The ring is specified on the input. After this follows the list of polynomial sets. \newline {\bf Options:} \begin{description} \item[-s]Sort output by degree. \end{description} {\subsection{gfan\_render}\label{applist:_render} This program renders a Gr\"obner fan as an xfig file. To be more precise, the input is the list of all reduced Gr\"obner bases of an ideal. The output is a drawing of the Gr\"obner fan intersected with a triangle. The corners of the triangle are (1,0,0) to the right, (0,1,0) to the left and (0,0,1) at the top. If there are more than three variables in the ring these coordinates are extended with zeros. It is possible to shift the 1 entry cyclic with the option -\hspace{0.013cm}-shiftVariables. \newline {\bf Options:} \begin{description} \item[-L]Make the triangle larger so that the shape of the Gr\"obner region appears.\item[-\hspace{0.013cm}-shiftVariables value]Shift the positions of the variables in the drawing. For example with the value equal to 1 the corners will be right: (0,1,0,0,...), left: (0,0,1,0,...) and top: (0,0,0,1,...). The shifting is done modulo the number of variables in the polynomial ring. The default value is 0.\end{description} {\subsection{gfan\_renderstaircase}\label{applist:_renderstaircase} This program renders a staircase diagram of a monomial initial ideal to an xfig file. The input is a Gr\"obner basis of a (not necessarily monomial) polynomial ideal. The initial ideal is given by the leading terms in the Gr\"obner basis. Using the -m option it is possible to render more than one staircase diagram. The program only works for ideals in a polynomial ring with three variables. \newline {\bf Options:} \begin{description} \item[-m]Read multiple ideals from the input. The ideals are given as a list of lists of polynomials. For each polynomial list in the list a staircase diagram is drawn. \item[-d value]Specifies the number of boxes being shown along each axis. Be sure that this number is large enough to give a correct picture of the standard monomials. The default value is 8. \item[-w value]Width. Specifies the number of staircase diagrams per row in the xfig file. The default value is 5. \end{description} {\subsection{gfan\_resultantfan}\label{applist:_resultantfan} This program computes the resultant fan as defined in "Computing Tropical Resultants" by Jensen and Yu. The input is a polynomial ring followed by polynomials, whose coefficients are ignored. The output is the fan of coefficients such that the input system has a tropical solution. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-codimension]Compute only the codimension of the resultant fan and return. \item[-\hspace{0.013cm}-symmetry]Tells the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the vector configuration. The program DOES NOT checks that the configuration stays fixed when permuting the variables with respect to elements in the group. The output is grouped according to the symmetry. \item[-\hspace{0.013cm}-nocones]Tells the program not to output the CONES and MAXIMAL\_CONES sections, but still output CONES\_COMPRESSED and MAXIMAL\_CONES\_COMPRESSED if -\hspace{0.013cm}-symmetry is used. \item[-\hspace{0.013cm}-special]Read in a zero-one vector from the standard input and specialize all variables with a one. That is, compute the stable intersection of the resultant fan with the subspace where the variables with a one in the vector are forced to zero. AT THE MOMENT ALSO A RELATIVE INTERIOR POINT OF A STARTING CONE IS READ. \item[-\hspace{0.013cm}-vectorinput]Read in a list of point configurations instead of a polynomial ring and a list of polynomials. \item[-\hspace{0.013cm}-projection]Use the projection method to compute the resultant fan. This works only if the resultant fan is a hypersurface. If this option is combined with -\hspace{0.013cm}-special, then the output fan lives in the subspace of the non-specialized coordinates. \end{description} {\subsection{gfan\_saturation}\label{applist:_saturation} This program computes the saturation of the input ideal with the product of the variables x\_1,...,x\_n. The ideal does not have to be homogeneous. \newline {\bf Options:} \begin{description} \item[-h]Tell the program that the input is a homogeneous ideal (with homogeneous generators). \item[-\hspace{0.013cm}-noideal]Do not treat input as an ideal but just factor out common monomial factors of the input polynomials.\end{description} {\subsection{gfan\_secondaryfan}\label{applist:_secondaryfan} This program computes the secondary fan of a vector configuration. The configuration is given as an ordered list of vectors. In order to compute the secondary fan of a point configuration an additional coordinate of ones must be added. For example \{(1,0),(1,1),(1,2),(1,3)\}. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-unimodular]Use heuristics to search for unimodular triangulation rather than computing the complete secondary fan\item[-\hspace{0.013cm}-scale value]Assuming that the first coordinate of each vector is 1, this option will take the polytope in the 1 plane and scale it. The point configuration will be all lattice points in that scaled polytope. The polytope must have maximal dimension. When this option is used the vector configuration must have full rank. This option may be removed in the future.\item[-\hspace{0.013cm}-restrictingfan value]Specify the name of a file containing a polyhedral fan in Polymake format. The computation of the Secondary fan will be restricted to this fan. If the -\hspace{0.013cm}-symmetry option is used then this restricting fan must be invariant under the symmetry and the orbits in the file must be with respect to the specified group of symmetries. The orbits of maximal cones of the file are then read in rather than the maximal cones. \item[-\hspace{0.013cm}-symmetry]Tells the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the vector configuration. The program checks that the configuration stays fixed when permuting the variables with respect to elements in the group. The output is grouped according to the symmetry. \item[-\hspace{0.013cm}-nocones]Tells the program not to output the CONES and MAXIMAL\_CONES sections, but still output CONES\_COMPRESSED and MAXIMAL\_CONES\_COMPRESSED if -\hspace{0.013cm}-symmetry is used.\item[-\hspace{0.013cm}-interrupt value]Interrupt the enumeration after a specified number of facets have been computed (works for usual symmetric traversals, but may not work in general for non-symmetric traversals or for traversals restricted to fans).\end{description} {\subsection{gfan\_stats}\label{applist:_stats} This program takes a list of reduced Gr\"obner bases for the same ideal and computes various statistics. The following information is listed: the number of bases in the input, the number of variables, the dimension of the homogeneity space, the maximal total degree of any polynomial in the input and the minimal total degree of any basis in the input, the maximal number of polynomials and terms in a basis in the input. {\subsection{gfan\_substitute}\label{applist:_substitute} This program changes the variable names of a polynomial ring. The input is a polynomial ring, a polynomial set in the ring and a new polynomial ring with the same coefficient field but different variable names. The output is the polynomial set written with the variable names of the second polynomial ring. Example: Input: Q[a,b,c,d]\{2a-3b,c+d\}Q[b,a,c,x] Output: Q[b,a,c,x]\{2*b-3*a,c+x\} {\subsection{gfan\_symmetries}\label{applist:_symmetries} This program computes the symmetries of a polynomial ideal. The program is slow, so think before using it. Use -\hspace{0.013cm}-symmetry to give hints about which subgroup of the symmetry group could be useful. The program checks each element of the specified subgroup to see if it preserves the ideal. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-symmetry]Specify subgroup to be searched for permutations keeping the ideal fixed.\item[-\hspace{0.013cm}-symsigns]Specify for each generator of the group specified wiht -\hspace{0.013cm}-symmetry an element of $\{-1,+1\}^n$ which by its multiplication on the variables together with the permutation is expected to keep the ideal fixed.\end{description} {\subsection{gfan\_tolatex}\label{applist:_tolatex} This program converts ASCII math to TeX math. The data-type is specified by the options. \newline {\bf Options:} \begin{description} \item[-h]Add a header to the output. Using this option the output will be LaTeXable right away.\item[-\hspace{0.013cm}-polynomialset\_]The data to be converted is a list of polynomials.\item[-\hspace{0.013cm}-polynomialsetlist\_]The data to be converted is a list of lists of polynomials.\end{description} {\subsection{gfan\_topolyhedralfan}\label{applist:_topolyhedralfan} This program takes a list of reduced Gr\"obner bases and produces the fan of all faces of these. In this way by giving the complete list of reduced Gr\"obner bases, the Gr\"obner fan can be computed as a polyhedral complex. The option -\hspace{0.013cm}-restrict lets the user choose between computing the Gr\"obner fan or the restricted Gr\"obner fan. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-restrict]Add an inequality for each coordinate, so that the the cones are restricted to the non-negative orthant.\item[-\hspace{0.013cm}-symmetry]Tell the program to read in generators for a group of symmetries (subgroup of $S\_n$) after having read in the ring. The output is grouped according to these symmetries. Only one representative for each orbit is needed on the input. \end{description} {\subsection{gfan\_tropicalbasis}\label{applist:_tropicalbasis} This program computes a tropical basis for an ideal defining a tropical curve. Defining a tropical curve means that the Krull dimension of R/I is at most 1 + the dimension of the homogeneity space of I where R is the polynomial ring. The input is a generating set for the ideal. If the input is not homogeneous option -h must be used. \newline {\bf Options:} \begin{description} \item[-h]Homogenise the input before computing a tropical basis and dehomogenise the output. This is needed if the input generators are not already homogeneous.\end{description} {\subsection{gfan\_tropicalbruteforce}\label{applist:_tropicalbruteforce} This program takes a marked reduced Gr\"obner basis for a homogeneous ideal and computes the tropical variety of the ideal as a subfan of the Gr\"obner fan. The program is slow but works for any homogeneous ideal. If you know that your ideal is prime over the complex numbers or you simply know that its tropical variety is pure and connected in codimension one then use gfan\_tropicalstartingcone and gfan\_tropicaltraverse instead. {\subsection{gfan\_tropicalcurve}\label{applist:_tropicalcurve} This program computes a tropical basis for an ideal defining a tropical curve. Defining a tropical curve means that the Krull dimension of R/I is at most 1 + the dimension of the homogeneity space of I where R is the polynomial ring. The input is a generating set for the ideal. If the input is not homogeneous option -h must be used. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-singleray]Only compute a single ray of the curve.\item[-\hspace{0.013cm}-parameters value]With this option you can specify how many variables to treat as parameters instead of variables. This makes it possible to do computations where the coefficient field is the field of rational functions in the parameters.\end{description} {\subsection{gfan\_tropicalevaluation}\label{applist:_tropicalevaluation} This program evaluates a tropical polynomial function in a given set of points. {\subsection{gfan\_tropicalfunction}\label{applist:_tropicalfunction} This program takes a polynomial and tropicalizes it. The output is piecewise linear function represented by a fan whose cones are the linear regions. Each ray of the fan gets the value of the tropical function assigned to it. In other words this program computes the normal fan of the Newton polytope of the input polynomial with additional information.\newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-exponents]Tell program to read a list of exponent vectors instead.\end{description} {\subsection{gfan\_tropicalhypersurface}\label{applist:_tropicalhypersurface} This program computes the tropical hypersurface defined by a principal ideal. The input is the polynomial ring followed by a set containing just a generator of the ideal. {\subsection{gfan\_tropicalintersection}\label{applist:_tropicalintersection} This program computes the set theoretical intersection of a set of tropical hypersurfaces (or to be precise, their common refinement as a fan). The input is a list of polynomials with each polynomial defining a hypersurface. Considering tropical hypersurfaces as fans, the intersection can be computed as the common refinement of these. Thus the output is a fan whose support is the intersection of the tropical hypersurfaces. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-tropicalbasistest]This option will test that the input polynomials for a tropical basis of the ideal they generate by computing the tropical prevariety of the input polynomials and then refine each cone with the Gr\"obner fan and testing whether each cone in the refinement has an associated monomial free initial ideal. If so, then we have a tropical basis and 1 is written as output. If not, then a zero is written to the output together with a vector in the tropical prevariety but not in the variety. The actual check is done on a homogenization of the input ideal, but this does not affect the result. (This option replaces the -t option from earlier gfan versions.) \item[-\hspace{0.013cm}-tplane]This option intersects the resulting fan with the plane x\_0=-1, where x\_0 is the first variable. To simplify the implementation the output is actually the common refinement with the non-negative half space. This means that "stuff at infinity" (where x\_0=0) is not removed.\item[-\hspace{0.013cm}-symmetryPrinting]Parse a group of symmetries after the input has been read. Used when printing with -\hspace{0.013cm}-incidence.\item[-\hspace{0.013cm}-symmetryExploit]Restrict computation to the closed lexicographic fundamental domain of the specified symmetry group. This overwrites -\hspace{0.013cm}-restrict.\item[-\hspace{0.013cm}-nocones]Tells the program not to output the CONES and MAXIMAL\_CONES sections, but still output CONES\_COMPRESSED and MAXIMAL\_CONES\_COMPRESSED if -\hspace{0.013cm}-symmetry is used.\item[-\hspace{0.013cm}-restrict]Restrict the computation to a full-dimensional cone given by a list of marked polynomials. The cone is the closure of all weight vectors choosing these marked terms.\item[-\hspace{0.013cm}-stable]Find the stable intersection of the input polynomials using tropical intersection theory. This can be slow. Most other options are ignored.\item[-\hspace{0.013cm}-parameters value]With this option you can specify how many variables to treat as parameters instead of variables. This makes it possible to do computations where the coefficient field is the field of rational functions in the parameters.\end{description} {\subsection{gfan\_tropicallifting}\label{applist:_tropicallifting} This program is part of the Puiseux lifting algorithm implemented in Gfan and Singular. The Singular part of the implementation can be found in: Anders Nedergaard Jensen, Hannah Markwig, Thomas Markwig: tropical.lib. A SINGULAR 3.0 library for computations in tropical geometry, 2007 See also http://www.mathematik.uni-kl.de/\~{}keilen/de/tropical.html and the paper Jensen, Markwig, Markwig: "An algorithm for lifting points in a tropical variety". Example: Run Singular from the directory where tropical.lib is located. Give the following sequence of commands to Singular: LIB "tropical.lib"; ring R=0,(t,x,y,z),dp; ideal i=-y2t4+x2,yt3+xz+y; intvec w=1,-2,0,2; list L=tropicallifting(i,w,3); displaytropicallifting(L,"subst"); This produces a Puiseux series solution to i with valuation (2,0,-2) \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-noMult]Disable the multiplicity computation.\item[-n value]Number of variables that should have negative weight.\item[-c]Only output a list of vectors being the possible choices.\end{description} {\subsection{gfan\_tropicallinearspace}\label{applist:_tropicallinearspace} This program generates tropical equations for a tropical linear space in the Speyer sense given the tropical Pluecker coordinates as input. \newline {\bf Options:} \begin{description} \item[-d value]Specify d.\item[-n value]Specify n.\item[-\hspace{0.013cm}-trees]list the boundary trees (assumes d=3)\end{description} {\subsection{gfan\_tropicalmultiplicity}\label{applist:_tropicalmultiplicity} This program computes the multiplicity of a tropical cone given a marked reduced Gr\"obner basis for its initial ideal. {\subsection{gfan\_tropicalprevariety}\label{applist:_tropicalprevariety} This program computes the tropical prevariety of a set of polynomials. The program works in two different modes. By default the coefficient field is regarded as having trivial valuation and the output is a polyhedral fan. With the option -\hspace{0.013cm}-usevaluation the program uses the valuation of the given coefficient field when defining the tropical prevariety. As a consequence the output in this case is a polyhedral complex represented by the half-open polyhedral fan over it. It is often useful to use the field Q(t). However, because of the limitations of the current parser, the way to specify elements of for example Q(t)[x1,x2] is to write them as polynomials in Q[t,x1,x2]. When -\hspace{0.013cm}-usevaluation is used the options -\hspace{0.013cm}-mint and -\hspace{0.013cm}-minx can switch the program from max to min convention. In particular, using both -\hspace{0.013cm}-mint and -\hspace{0.013cm}-minx switches conventions to the [Speyer,Sturmfels]/[Maclagan,Sturmfels] convention. Example: ./gfan \_tropicalprevariety -j32 -\hspace{0.013cm}-usevaluation -\hspace{0.013cm}-bits64 with input: Q(t)[x,y]\{1+t*x+x+y\} produces a polyhedral complex.\newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-saveas value]Specify filename for saving intermediate result.\item[-\hspace{0.013cm}-loadfrom value]Specify filename for loading intermediate result.\item[-j value]Number of threads\item[-\hspace{0.013cm}-bits value]Number of bits used in intermediate integer type. Allowed values are 64, 32 and 0 for arbitrary precision. In the postprocessing step the computed prevariety is converted in arbitrary precission.\item[-\hspace{0.013cm}-usevaluation]Use valuations in the defintion of the tropical hypersurfaces. The used valuation comes from the ring specified. For example Q(t) will come with its usual valuation. In order to represent the output an additional 0th coordinate is introduced.\item[-\hspace{0.013cm}-mint]In a field with parameter t this option decides if maximal or minimal degrees of t determine the valuation.\item[-\hspace{0.013cm}-minx]Switch the programme to min convention for the variables.\end{description} {\subsection{gfan\_tropicalrank}\label{applist:_tropicalrank} This program will compute the tropical rank of matrix given as input. Tropical addition is MAXIMUM. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-kapranov]Compute Kapranov rank instead of tropical rank.\item[-\hspace{0.013cm}-determinant]Compute the tropical determinant instead.\end{description} {\subsection{gfan\_tropicalstartingcone}\label{applist:_tropicalstartingcone} This program computes a starting pair of marked reduced Gr\"obner bases to be used as input for gfan\_tropicaltraverse. The input is a homogeneous ideal whose tropical variety is a pure d-dimensional polyhedral complex. \newline {\bf Options:} \begin{description} \item[-g]Tell the program that the input is already a reduced Gr\"obner basis.\item[-d]Output dimension information to standard error.\item[-\hspace{0.013cm}-stable]Find starting cone in the stable intersection or, equivalently, pretend that the coefficients are genereric.\end{description} {\subsection{gfan\_tropicaltraverse}\label{applist:_tropicaltraverse} This program computes a polyhedral fan representation of the tropical variety of a homogeneous prime ideal $I$. Let $d$ be the Krull dimension of $I$ and let $\omega$ be a relative interior point of $d$-dimensional Gr\"obner cone contained in the tropical variety. The input for this program is a pair of marked reduced Gr\"obner bases with respect to the term order represented by $\omega$, tie-broken in some way. The first one is for the initial ideal $in\_\omega(I)$ the second one for $I$ itself. The pair is the starting point for a traversal of the $d$-dimensional Gr\"obner cones contained in the tropical variety. If the ideal is not prime but with the tropical variety still being pure $d$-dimensional the program will only compute a codimension $1$ connected component of the tropical variety. \newline {\bf Options:} \begin{description} \item[-\hspace{0.013cm}-symmetry]Do computations up to symmetry and group the output accordingly. If this option is used the program will read in a list of generators for a symmetry group after the pair of Gr\"obner bases have been read. Two advantages of using this option is that the output is nicely grouped and that the computation can be done faster.\item[-\hspace{0.013cm}-symsigns]Specify for each generator of the symmetry group an element of $\{-1,+1\}^n$ which by its multiplication on the variables together with the permutation will keep the ideal fixed. The vectors are given as the rows of a matrix.\item[-\hspace{0.013cm}-nocones]Tells the program not to output the CONES and MAXIMAL\_CONES sections, but still output CONES\_ORBITS and MAXIMAL\_CONES\_ORBITS if -\hspace{0.013cm}-symmetry is used.\item[-\hspace{0.013cm}-disableSymmetryTest]When using -\hspace{0.013cm}-symmetry this option will disable the check that the group read off from the input actually is a symmetry group with respect to the input ideal. \item[-\hspace{0.013cm}-stable]Traverse the stable intersection or, equivalently, pretend that the coefficients are genereric.\item[-\hspace{0.013cm}-interrupt value]Interrupt the enumeration after a specified number of facets have been computed (works for usual symmetric traversals, but may not work in general for non-symmetric traversals or for traversals restricted to fans).\end{description} {\subsection{gfan\_tropicalweildivisor}\label{applist:_tropicalweildivisor} This program computes the tropical Weil divisor of piecewise linear (or tropical rational) function on a tropical k-cycle. See the Gfan manual for more information. \newline {\bf Options:} \begin{description} \item[-i1 value]Specify the name of the Polymake input file containing the k-cycle.\item[-i2 value]Specify the name of the Polymake input file containing the piecewise linear function.\end{description} {\subsection{gfan\_version}\label{applist:_version} This program writes out version information of the Gfan installation. gfan0.7/doc/jensen.bib0000644000175000017500000006642714656430617014270 0ustar andersanders@book{tropicalbook, title={Introduction to Tropical Geometry: }, author={Maclagan, D. and Sturmfels, B.}, isbn={9780821851982}, lccn={2014036141}, series={Graduate Studies in Mathematics}, url={https://books.google.com.tw/books?id=3DLMoQEACAAJ}, year={2015}, publisher={American Mathematical Society} } @article{allermannRau, author = {Lars Allermann and Johannes Rau}, title = {First steps in tropical intersection theory}, journal = {Mathematische Zeitschrift}, publisher = {Springer}, year = {2009} } @inproceedings{AGK, author = {Beatrice Amrhein and Oliver Gloor and Wolfgang K\"uchlin}, title = {Walking faster}, booktitle = {Proceedings DISCO '96}, publisher = {LNCS 1128, Springer}, address = {Berlin}, year = {1996}, pages = {150-161} } @article{AGK2, author = {Beatrice Amrhein and Oliver Gloor and Wolfgang K\"uchlin}, title = {Walking faster.}, journal = {Proceedings DISCO '96}, publisher = {LNCS 1128, Springer}, address = {Berlin}, year = {1996}, pages = {150-161}, } @book{atiyah, AUTHOR = {Atiyah, M. F. and Macdonald, I. G.}, TITLE = {Introduction to commutative algebra}, PUBLISHER = {Addison-Wesley Publishing Co., Reading, Mass.-London-Don Mills, Ont.}, YEAR = {1969}, PAGES = {ix+128}, MRCLASS = {13.00}, MRNUMBER = {MR0242802 (39 \#4129)}, MRREVIEWER = {J. A. Johnson}, } @article {af-rse-96, AUTHOR = {Avis, David and Fukuda, Komei}, TITLE = {Reverse search for enumeration}, NOTE = {First International Colloquium on Graphs and Optimization (GOI), 1992 (Grimentz)}, JOURNAL = {Discrete Appl. Math.}, FJOURNAL = {Discrete Applied Mathematics. The Journal of Combinatorial Algorithms, Informatics and Computational Sciences}, VOLUME = {65}, YEAR = {1996}, NUMBER = {1-3}, PAGES = {21--46}, ISSN = {0166-218X}, CODEN = {DAMADU}, MRCLASS = {05C30 (05A15)}, MRNUMBER = {MR1380066 (98a:05080)}, } @article{avis, author = {David Avis and Komei Fukuda}, title = {A basis enumeration algorithm for convex hulls and vertex enumeration of arrangements and polyhedra.}, journal = {Discrete Computational Geometry}, volume = {8}, year = {1992}, pages = {295-313}, } @book {basu, AUTHOR = {Basu, Saugata and Pollack, Richard and Roy, Marie-Fran{\c{c}}oise}, TITLE = {Algorithms in real algebraic geometry}, SERIES = {Algorithms and Computation in Mathematics}, VOLUME = {10}, EDITION = {Second}, PUBLISHER = {Springer-Verlag}, ADDRESS = {Berlin}, YEAR = {2006}, PAGES = {x+662}, ISBN = {978-3-540-33098-1; 3-540-33098-4}, MRCLASS = {14P10 (03C10 52C45 68Q25 68W30)}, MRNUMBER = {MR2248869 (2007b:14125)}, } @article {bayer, AUTHOR = {Bayer, David and Morrison, Ian}, TITLE = {Standard bases and geometric invariant theory. {I}. {I}nitial ideals and state polytopes}, NOTE = {Computational aspects of commutative algebra}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {6}, YEAR = {1988}, NUMBER = {2-3}, PAGES = {209--217}, ISSN = {0747-7171}, MRCLASS = {13-04 (13B25 68Q40)}, MRNUMBER = {MR988413 (90e:13001)}, MRREVIEWER = {Ferdinando Mora}, } @book{becker, AUTHOR = {Becker, Thomas and Weispfenning, Volker}, TITLE = {Gr\"obner bases}, SERIES = {Graduate Texts in Mathematics}, VOLUME = {141}, NOTE = {A computational approach to commutative algebra, In cooperation with Heinz Kredel}, PUBLISHER = {Springer-Verlag}, ADDRESS = {New York}, YEAR = {1993}, PAGES = {xxii+574}, ISBN = {0-387-97971-9}, MRCLASS = {13P10 (13-01)}, MRNUMBER = {MR1213453 (95e:13018)}, MRREVIEWER = {J{\"o}rgen Backelin}, } @article {Ber, AUTHOR = {Bergman, George M.}, TITLE = {The logarithmic limit-set of an algebraic variety}, JOURNAL = {Trans. Amer. Math. Soc.}, FJOURNAL = {Transactions of the American Mathematical Society}, VOLUME = {157}, YEAR = {1971}, PAGES = {459--469}, ISSN = {0002-9947}, MRCLASS = {14.01}, MRNUMBER = {MR0280489 (43 \#6209)}, MRREVIEWER = {M. J. Greenberg}, } @preamble{ "\def\cprime{$'$} " } @article {MR0435072, AUTHOR = {Bernstein, D. N.}, TITLE = {The number of roots of a system of equations}, JOURNAL = {Funkcional. Anal. i Prilo\v zen.}, FJOURNAL = {Akademija Nauk SSSR. Funkcional\cprime nyi Analiz i ego Prilo\v zenija}, VOLUME = {9}, YEAR = {1975}, NUMBER = {3}, PAGES = {1--4}, ISSN = {0374-1990}, MRCLASS = {14B99 (12E99 58C25)}, MRNUMBER = {MR0435072 (55 \#8034)}, MRREVIEWER = {A. H. Wallace}, } @article{bernstein, author = {David Bernstein}, title = {The number of roots of a system of equations}, journal = {Functional Analysis and its Applications}, volume = {9}, number = {}, year = {1975}, pages = {183-185}, } @article{BG, AUTHOR = {Bieri, Robert and Groves, J. R. J.}, TITLE = {The geometry of the set of characters induced by valuations}, JOURNAL = {J. Reine Angew. Math.}, FJOURNAL = {Journal f\"ur die Reine und Angewandte Mathematik}, VOLUME = {347}, YEAR = {1984}, PAGES = {168--195}, ISSN = {0075-4102}, CODEN = {JRMAA8}, MRCLASS = {14A20 (12J20 13A18 52A25)}, MRNUMBER = {MR733052 (86c:14001)}, MRREVIEWER = {Ralph Strebel}, } @article{BF, author = {G\"oran Bj\"orck and Ralf Fr\"oberg}, title = {A faster way to count the solutions of inhomogeneous systems of algebraic equations, with applications to cyclic $n$-roots}, journal = {J. Symb. Comput.}, volume = {12}, number = {3/4}, year = {1991}, pages = {329-336} } @article {circuitideals, AUTHOR = {Bogart, Tristram and Jensen, Anders N. and Thomas, Rekha R.}, TITLE = {The circuit ideal of a vector configuration}, JOURNAL = {J. Algebra}, FJOURNAL = {Journal of Algebra}, VOLUME = {309}, YEAR = {2007}, NUMBER = {2}, PAGES = {518--542}, ISSN = {0021-8693}, CODEN = {JALGA4}, MRCLASS = {13Pxx (05Exx)}, MRNUMBER = {MR2303191}, eprint = {math.AC/0508628} } @article{ctvgammel, author = {Tristram Bogart and Anders Jensen and Rekha Thomas and David Speyer and Bernd Sturmfels}, title = {Computing tropical varieties.}, journal = {J. Symb. Comput.}, volume = {42}, number = {1-2}, year = {2007}, pages = {54-73}, bibsource = {}, eprint = {math.AG/0507563} } @article {ctv, AUTHOR = {Bogart, T. and Jensen, A. N. and Speyer, D. and Sturmfels, B. and Thomas, R. R.}, TITLE = {Computing tropical varieties}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {42}, YEAR = {2007}, NUMBER = {1-2}, PAGES = {54--73}, ISSN = {0747-7171}, MRCLASS = {14Qxx (68N30)}, MRNUMBER = {MR2284285}, eprint = {math.AG/0507563} } @misc{Buch, author = {Bruno Buchberger}, title = {An Algorithm for Finding a Basis for the Residue Class Ring of a Zero-Dimensional Polynomial Ideal}, year = {1965}, note = {PhD-thesis (German)}, } @article {collart, AUTHOR = {Collart, S. and Kalkbrener, M. and Mall, D.}, TITLE = {Converting bases with the {G}r\"obner walk}, NOTE = {Computational algebra and number theory (London, 1993)}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {24}, YEAR = {1997}, NUMBER = {3-4}, PAGES = {465--469}, ISSN = {0747-7171}, MRCLASS = {13P10 (68Q40)}, MRNUMBER = {MR1484492}, } @book {Cox97, AUTHOR = {Cox, David and Little, John and O'Shea, Donal}, TITLE = {Ideals, varieties, and algorithms}, SERIES = {Undergraduate Texts in Mathematics}, EDITION = {Second}, NOTE = {An introduction to computational algebraic geometry and commutative algebra}, PUBLISHER = {Springer-Verlag}, ADDRESS = {New York}, YEAR = {1997}, PAGES = {xiv+536}, ISBN = {0-387-94680-2}, MRCLASS = {13P10 (13-01 14-01 14Qxx 68Q40)}, MRNUMBER = {MR1417938 (97h:13024)}, } @article {develin-2004-9, AUTHOR = {Develin, Mike and Sturmfels, Bernd}, TITLE = {Erratum for: ``{T}ropical convexity'' [{D}oc. {M}ath. {\bf 9} (2004), 1--27 (electronic); MR2054977]}, JOURNAL = {Doc. Math.}, FJOURNAL = {Documenta Mathematica}, VOLUME = {9}, YEAR = {2004}, PAGES = {205--206 (electronic)}, ISSN = {1431-0635}, MRCLASS = {52A30 (92B10)}, MRNUMBER = {MR2117413 (2006c:52005)}, MRREVIEWER = {Gerard Sierksma}, } @misc {draisma, author = "Jan Draisma", title = "A tropical approach to secant dimensions", year = "2006", eprint = "math.AG/0605345v3" } @PhdThesis{thesis, author = {Anders Nedergaard Jensen}, title = {Algorithmic aspects of {G}r\"obner fans and tropical varieties}, school = {University of Aarhus}, year = {2007}, note = {\url{http://www.imf.au.dk/publs?id=655}}, } @Misc{cats, author = {Jensen, Anders}, title = {{CaTS}, a software system for toric state polytopes}, howpublished = {Available at {http://www.soopadoopa.dk/anders/cats/cats.html}} } @article {lind, AUTHOR = {Einsiedler, Manfred and Kapranov, Mikhail and Lind, Douglas}, TITLE = {Non-{A}rchimedean amoebas and tropical varieties}, JOURNAL = {J. Reine Angew. Math.}, FJOURNAL = {Journal f\"ur die Reine und Angewandte Mathematik}, VOLUME = {601}, YEAR = {2006}, PAGES = {139--157}, ISSN = {0075-4102}, CODEN = {JRMAA8}, MRCLASS = {14Gxx (14Pxx)}, MRNUMBER = {MR2289207}, } @article {FGLM, AUTHOR = {Faug{\`e}re, J. C. and Gianni, P. and Lazard, D. and Mora, T.}, TITLE = {Efficient computation of zero-dimensional {G}r\"obner bases by change of ordering}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {16}, YEAR = {1993}, NUMBER = {4}, PAGES = {329--344}, ISSN = {0747-7171}, MRCLASS = {68Q40}, MRNUMBER = {MR1263871 (94k:68095)}, } @manual{cdd , author = "Komei Fukuda" , title = "cddlib reference manual, cddlib Version 094b" , organization = "~Swiss Federal Institute of Technology" , address = "Lausanne and Z{\"u}rich, Switzerland" , year = 2005 , sortkey = "0051" , note = "\url{http://www.ifor.math.ethz.ch/~fukuda/cdd_home/cdd.html}" , update = "99.10 fukuda" } @article{fukuda, author = {Komei Fukuda and Anders Jensen and Rekha Thomas}, title = {Computing {G}r{\"o}bner Fans.}, journal = {Mathematics of Computation, to appear}, volume = {}, number = {}, year = {2007}, pages = {}, bibsource = {}, eprint = {math.AC/0509544} } @article {genericgroebnerwalk, AUTHOR = {Fukuda, K. and Jensen, A. N. and Lauritzen, N. and Thomas, R.}, TITLE = {The generic {G}r\"obner walk}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {42}, YEAR = {2007}, NUMBER = {3}, PAGES = {298--312}, ISSN = {0747-7171}, MRCLASS = {68W30}, MRNUMBER = {MR2292637}, eprint = {math.AC/0501345} } @article{genericgroebnerwalkgammel, author = {Komei Fukuda and Anders Jensen and Niels Lauritzen and Rekha Thomas}, title = {The generic {G}r\"obner walk.}, journal = {J. Symb. Comput.}, volume = {42}, number = {3}, year = {2007}, pages = {298-312}, bibsource = {}, eprint = {math.AC/0501345} } @inproceedings{weibel, author = {Christophe Weibel and Komei Fukuda}, title = {Computing faces up to k dimensions of a Minkowski Sum of Polytopes.}, booktitle = {CCCG}, year = {2005}, pages = {256-259}, ee = {http://www.cccg.ca/proceedings/2005/44.pdf}, bibsource = {DBLP, http://dblp.uni-trier.de} } @book {Ful, AUTHOR = {Fulton, William}, TITLE = {Introduction to toric varieties}, SERIES = {Annals of Mathematics Studies}, VOLUME = {131}, NOTE = {, The William H. Roever Lectures in Geometry}, PUBLISHER = {Princeton University Press}, ADDRESS = {Princeton, NJ}, YEAR = {1993}, PAGES = {xii+157}, ISBN = {0-691-00049-2}, MRCLASS = {14M25 (14-02 14J30)}, MRNUMBER = {MR1234037 (94g:14028)}, MRREVIEWER = {T. Oda}, } @article {li, AUTHOR = {Gao, Tangan and Li, T. Y.}, TITLE = {Mixed volume computation via linear programming}, JOURNAL = {Taiwanese J. Math.}, FJOURNAL = {Taiwanese Journal of Mathematics}, VOLUME = {4}, YEAR = {2000}, NUMBER = {4}, PAGES = {599--619}, ISSN = {1027-5487}, MRCLASS = {65D18 (52A39)}, MRNUMBER = {MR1799755 (2001j:65026)}, } @article{gathmann, author = {Andreas Gathmann}, title = {Tropical Algebraic Geometry}, eprint = {math.AG/0601322}, year = {2006} } @incollection{polymake, author = {Ewgenij Gawrilow and Michael Joswig}, title = {polymake: a Framework for Analyzing Convex Polytopes}, pages = {43-74}, editor = {Gil Kalai and G\"unter M. Ziegler}, booktitle = {Polytopes --- Combinatorics and Computation}, publisher = {Birkh\"auser}, year = {2000} } @article {gianni88, AUTHOR = {Gianni, Patrizia and Trager, Barry and Zacharias, Gail}, TITLE = {Gr\"obner bases and primary decomposition of polynomial ideals}, NOTE = {Computational aspects of commutative algebra}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {6}, YEAR = {1988}, NUMBER = {2-3}, PAGES = {149--167}, ISSN = {0747-7171}, MRCLASS = {68Q40 (13-04 13A17)}, MRNUMBER = {MR988410 (90f:68091)}, MRREVIEWER = {Daniel Lazard}, } @Misc{gfan, author = {Jensen, Anders Nedergaard}, title = {Gfan, a software system for {G}r{\"o}bner fans}, howpublished = {Available at \url{http://home.imf.au.dk/ajensen/software/gfan/gfan.html}} } @misc{gmp, author = {Torbj{\"o}rn {Granlund et al.}}, title = "{GNU} Multiple Precision Arithmetic Library 4.1.2", month = {December}, year = 2002, note = "\url{http://swox.com/gmp/}" } @book {greuelpfister, AUTHOR = {Greuel, Gert-Martin and Pfister, Gerhard}, TITLE = {A {S}ingular introduction to commutative algebra}, NOTE = {With contributions by Olaf Bachmann, Christoph Lossen and Hans Sch\"onemann, With 1 CD-ROM (Windows, Macintosh, and UNIX)}, PUBLISHER = {Springer-Verlag}, ADDRESS = {Berlin}, YEAR = {2002}, PAGES = {xviii+588}, ISBN = {3-540-42897-6}, MRCLASS = {13-01 (13-04)}, MRNUMBER = {MR1930604 (2003k:13001)}, MRREVIEWER = {Paulo F. Machado}, } @article {hampton, AUTHOR = {Hampton, Marshall and Moeckel, Richard}, TITLE = {Finiteness of relative equilibria of the four-body problem}, JOURNAL = {Invent. Math.}, FJOURNAL = {Inventiones Mathematicae}, VOLUME = {163}, YEAR = {2006}, NUMBER = {2}, PAGES = {289--312}, ISSN = {0020-9910}, CODEN = {INVMBH}, MRCLASS = {70F10}, MRNUMBER = {MR2207019}, } @article {hubersturmfels, AUTHOR = {Huber, Birkett and Sturmfels, Bernd}, TITLE = {A polyhedral method for solving sparse polynomial systems}, JOURNAL = {Math. Comp.}, FJOURNAL = {Mathematics of Computation}, VOLUME = {64}, YEAR = {1995}, NUMBER = {212}, PAGES = {1541--1555}, ISSN = {0025-5718}, } @misc{TrIm, AUTHOR = { Bernd Sturmfels and Josephine Yu} , title = "Tropical Implicitization and Mixed Fiber Polytopes", year = 2007, eprint = {cs.SC/0706.0564v1} } @misc{jensenMaster, AUTHOR = { Anders Nedergaard Jensen}, title = {Computing {G}r\"obner fans of toric ideals}, year = 2002, note = {Master thesis, University of Aarhus} } @InProceedings{jensenICMS2006, author = {Anders Nedergaard Jensen}, title = {A presentation of the {Gfan} software.}, booktitle = "Mathematical Software - ICMS 2006", pages = "222--224", year = 2006, editor = "Iglesias and Takayama", publisher = "Springer", ISBN = "3540380841", } @article {jensen, AUTHOR = {Jensen, Anders Nedergaard}, TITLE = {A non-regular {G}r\"obner fan}, JOURNAL = {Discrete Comput. Geom.}, FJOURNAL = {Discrete \& Computational Geometry. An International Journal of Mathematics and Computer Science}, VOLUME = {37}, YEAR = {2007}, NUMBER = {3}, PAGES = {443--453}, ISSN = {0179-5376}, CODEN = {DCGEER}, MRCLASS = {13P10}, MRNUMBER = {MR2301528}, eprint = {math.CO/0501352} } @misc{symmetricfans, author = {Jensen, Anders N.}, title = {Traversing symmetric polyhedral fans}, howpublished = {to appear in ``Mathe\-matical Software - ICMS 2010''}, booktitle = "Mathematical Software - ICMS 2010", year = 2010, publisher = "Springer", } @article {kalkbrener-onthecomplexity, AUTHOR = {Kalkbrener, Michael}, TITLE = {On the complexity of {G}r\"obner bases conversion}, NOTE = {Polynomial elimination---algorithms and applications}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {28}, YEAR = {1999}, NUMBER = {1-2}, PAGES = {265--273}, ISSN = {0747-7171}, MRCLASS = {13P10 (68W30)}, MRNUMBER = {MR1709906 (2000g:13020)}, MRREVIEWER = {Joachim Apel}, } @misc {katz, author = "Eric Katz", title = "A tropical toolkit", year = "2006", eprint = "math.AG/0610878v2" } @misc {mlfb, author = "Anders Nedergaard Jensen and Niels Lauritzen and Bjarke Hammersholt Roune", title = "Maximal lattice free bodies, test sets and the Frobenius problem", year = "2007", eprint = "arXiv:0705.4483" } @book {lauritzen-concrete, AUTHOR = {Lauritzen, Niels}, TITLE = {Concrete abstract algebra}, NOTE = {From numbers to Gr\"obner bases}, PUBLISHER = {Cambridge University Press}, ADDRESS = {Cambridge}, YEAR = {2003}, PAGES = {xiv+240}, ISBN = {0-521-53410-0}, MRCLASS = {00-01 (13-01 20-01)}, MRNUMBER = {MR2014325 (2005d:00001)}, MRREVIEWER = {Frank Sottile}, } @article{lauritzen, author = {Niels Lauritzen}, title = {Truncated {G}r\"obner fans and lattice ideals}, journal = {}, volume = {}, year = {2005}, eprint = {math.AG/0509247} } @incollection {mall, AUTHOR = {Mall, Daniel}, TITLE = {Gr\"obner fans and projective schemes}, BOOKTITLE = {Symbolic rewriting techniques (Ascona, 1995)}, SERIES = {Progr. Comput. Sci. Appl. Logic}, VOLUME = {15}, PAGES = {181--191}, PUBLISHER = {Birkh\"auser}, ADDRESS = {Basel}, YEAR = {1998}, MRCLASS = {13P10 (68Q40)}, MRNUMBER = {MR1624580 (99d:13033)}, MRREVIEWER = {Ralf Fr{\"o}berg}, } @misc{mikhalkin, author = {Grigory Mikhalkin}, title = {Tropical geometry}, year = {2007}, note = {Work in progress, http://www.math.toronto.edu/mikha/TG-project.html}, } @incollection {doubledescription, AUTHOR = {Motzkin, T. S. and Raiffa, H. and Thompson, G. L. and Thrall, R. M.}, TITLE = {The double description method}, BOOKTITLE = {Contributions to the theory of games, vol. 2}, SERIES = {Annals of Mathematics Studies, no. 28}, PAGES = {51--73}, PUBLISHER = {Princeton University Press}, ADDRESS = {Princeton, N. J.}, YEAR = {1953}, MRCLASS = {90.0X}, MRNUMBER = {MR0060202 (15,638g)}, MRREVIEWER = {H. W. Kuhn}, } @book{ascb, author = {Lior Pachter and Bernd Sturmfelse}, title = {Algebraic Statistics for Computational Biology}, year = {2005}, PUBLISHER = {Cambridge Univ. Press}, ADDRESS = {New York}, } @article{rambau, author = {J{\"o}rg Rambau}, title = {{TOPCOM}: Triangulations of Point Configurations and Oriented Matroids}, journal = {ZIB report}, institution ={Konrad-Zuse-Zentrum f{\"u}r Informationstechnik Berlin}, volume = {02-17}, year = {2002}, } @TechReport{singular, author = {G.-M. Greuel and G. Pfister and H. Sch\"onemann}, title = {{\sc Singular} 2.0.5}, type = {{A Computer Algebra System for Polynomial Computations}}, institution = {Centre for Computer Algebra}, address = {University of Kaiserslautern}, year = {2004}, note = {\url{http://www.singular.uni-kl.de}}, } @Misc{4ti2, author = {4ti2 team}, title = {4ti2---A software package for algebraic, geometric and combinatorial problems on linear spaces}, howpublished = {{A}vailable at www.4ti2.de} } @article{huber, author = {Birkett Huber and Rekha R. Thomas}, title = {Computing {G}r{\"o}bner fans of toric ideals.}, journal = {Experimental Mathematics}, volume = {9}, number = {3/4}, year = {2000}, pages = {321-331} } @misc{singularscript, author = {Anders Nedergaard Jensen}, title = "A {S}ingular script for verifying a {Gr{\"o}bner} fan computation.", year = 2005, note = "\url{http://home.imf.au.dk/ajensen/papers/singularscript.html}" } @article{lifting, author = {Hannah Markwig and Thomas Markwig and Anders Jensen}, title = {An Algorithm for Lifting Points in a Tropical Variety}, journal = {}, volume = {}, pages = {}, year = {2007}, eprint = {math.AG/0705.2441} } @article{Kalk, author = {Michael Kalkbrener}, title = {On the complexity of {G}r{\"o}bner bases conversion}, journal = {J. Symb. Comput.}, volume = {28}, year = {1999}, pages = {265--273} } @article {MoRo, AUTHOR = {Mora, Teo and Robbiano, Lorenzo}, TITLE = {The {G}r\"obner fan of an ideal}, NOTE = {Computational aspects of commutative algebra}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {6}, YEAR = {1988}, NUMBER = {2-3}, PAGES = {183--208}, ISSN = {0747-7171}, MRCLASS = {13A15 (13-04 68Q40)}, MRNUMBER = {MR988412 (90d:13004)}, MRREVIEWER = {Felipe Cucker}, } @article{onn, author = {Shmuel Onn and Bernd Sturmfels}, title = {Cutting corners}, journal = {Advances in Applied Mathematics}, volume = {23}, number = {}, year = {1999}, pages = {29-48} } @incollection {richtergebert-2003-, AUTHOR = {Richter-Gebert, J{\"u}rgen and Sturmfels, Bernd and Theobald, Thorsten}, TITLE = {First steps in tropical geometry}, BOOKTITLE = {Idempotent mathematics and mathematical physics}, SERIES = {Contemp. Math.}, VOLUME = {377}, PAGES = {289--317}, PUBLISHER = {Amer. Math. Soc.}, ADDRESS = {Providence, RI}, YEAR = {2005}, MRCLASS = {14P99 (52B70 68W30)}, MRNUMBER = {MR2149011 (2006d:14073)}, MRREVIEWER = {Eugenii Shustin}, eprint = {math.AG/0306366}, } @incollection {robbiano, AUTHOR = {Robbiano, Lorenzo}, TITLE = {Term orderings on the polynomial ring}, BOOKTITLE = {EUROCAL '85, Vol.\ 2 (Linz, 1985)}, SERIES = {Lecture Notes in Comput. Sci.}, VOLUME = {204}, PAGES = {513--517}, PUBLISHER = {Springer}, ADDRESS = {Berlin}, YEAR = {1985}, MRCLASS = {13B25 (06F15 32B05)}, MRNUMBER = {MR826583 (87e:13006)}, MRREVIEWER = {David C. Lantz}, } @book {saito, AUTHOR = {Saito, Mutsumi and Sturmfels, Bernd and Takayama, Nobuki}, TITLE = {Gr\"obner deformations of hypergeometric differential equations}, SERIES = {Algorithms and Computation in Mathematics}, VOLUME = {6}, PUBLISHER = {Springer-Verlag}, ADDRESS = {Berlin}, YEAR = {2000}, PAGES = {viii+254}, ISBN = {3-540-66065-8}, MRCLASS = {13N10 (13P10 16S32 32C38 33C80 68W30)}, MRNUMBER = {MR1734566 (2001i:13036)}, MRREVIEWER = {Francisco Jes{\'u}s Castro-Jim{\'e}nez}, } @article {tropgrass, AUTHOR = {Speyer, David and Sturmfels, Bernd}, TITLE = {The tropical {G}rassmannian}, JOURNAL = {Adv. Geom.}, FJOURNAL = {Advances in Geometry}, VOLUME = {4}, YEAR = {2004}, NUMBER = {3}, PAGES = {389--411}, ISSN = {1615-715X}, CODEN = {AGDEA3}, MRCLASS = {14P99 (13J30 14M25)}, MRNUMBER = {MR2071813 (2005d:14089)}, MRREVIEWER = {Meirav Amram-Blei}, eprint = {math.AG/0304218}, } @book {stoustrup, AUTHOR = {Stoustrup, Bjarne}, TITLE = {The C++ Programming Language}, PUBLISHER = {Addison-Wesley}, EDITION = {Third}, YEAR = {1997}, ISBN = {0-201-88954-4}, } @book {sturmfels, AUTHOR = {Sturmfels, Bernd}, TITLE = {Gr\"obner bases and convex polytopes}, SERIES = {University Lecture Series}, VOLUME = {8}, PUBLISHER = {American Mathematical Society}, ADDRESS = {Providence, RI}, YEAR = {1996}, PAGES = {xii+162}, ISBN = {0-8218-0487-1}, MRCLASS = {13P10 (14M25 52B20)}, MRNUMBER = {MR1363949 (97b:13034)}, MRREVIEWER = {P. Schenzel}, } @book {sturmfelssolving, AUTHOR = {Sturmfels, Bernd}, TITLE = {Solving systems of polynomial equations}, SERIES = {CBMS Regional Conference Series in Mathematics}, VOLUME = {97}, PUBLISHER = {Published for the Conference Board of the Mathematical Sciences, Washington, DC}, YEAR = {2002}, PAGES = {viii+152}, ISBN = {0-8218-3251-4}, MRCLASS = {13P10 (14P99 14Q15 62-09 65H10)}, MRNUMBER = {MR1925796 (2003i:13037)}, MRREVIEWER = {Joseph Gubeladze}, } @article{sturmfelstevelev, author = {Bernd Sturmfels and Jenia Tevelev}, title = {Elimination Theory for Tropical Varieties}, eprint = {math.AG/0704.3471v1}, year = {2007} } @article {theobald, AUTHOR = {Theobald, Thorsten}, TITLE = {On the frontiers of polynomial computations in tropical geometry}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {41}, YEAR = {2006}, NUMBER = {12}, PAGES = {1360--1375}, ISSN = {0747-7171}, MRCLASS = {68Q17 (14P25 14Q15 68Q15 68Q25)}, MRNUMBER = {MR2271330 (2007g:68052)}, MRREVIEWER = {Luis Felipe Tabera}, eprint = {math.CO/0411012}, } @article {tran, AUTHOR = {Tran, Quoc-Nam}, TITLE = {A fast algorithm for {G}r\"obner basis conversion and its applications}, JOURNAL = {J. Symbolic Comput.}, FJOURNAL = {Journal of Symbolic Computation}, VOLUME = {30}, YEAR = {2000}, NUMBER = {4}, PAGES = {451--467}, ISSN = {0747-7171}, MRCLASS = {13P10 (68W30)}, MRNUMBER = {MR1784752 (2001k:13043)}, MRREVIEWER = {Petr Lison{\v{e}}k}, } @article{Traverso, author = {Carlo Traverso}, title = {Hilbert functions and {B}uchberger algorithm}, journal = {J. Symb. Comput.}, volume = {22}, year = {1996}, pages = {355--376} } @article{vigeland-2004-, author = {Magnus Dehli Vigeland}, title = {The group law on a tropical elliptic curve}, url = {http://www.citebase.org/cgi-bin/citations?id=oai:arXiv.org:math/0411485}, eprint = {math.AG/0411485}, year = {2004} } @PhdThesis{wunderling, author = "Roland Wunderling", title = "Paralleler und objektorientierter {S}implex-{A}lgorithmus", school = "Technische Universit{\"a}t Berlin", year = "1996", note = "\url{http://www.zib.de/Publications/abstracts/TR-96-09/}", } @book{ziegler, author = {G{\"u}nter Ziegler}, title = {Lectures on Polytopes}, year = {1994}, publisher = {Springer-Verlag}, volume = {152}, series = {GTM}, } gfan0.7/doc/Makefile0000644000175000017500000000014214656430617013746 0ustar andersandersall: latex manual.tex bibtex manual dvips manual.dvi -omanual.ps dvipdf manual.dvi manual.pdf gfan0.7/doc/gfan.eps0000644000175000017500000001335414656430617013743 0ustar andersanders%!PS-Adobe-2.0 EPSF-2.0 %%Title: gfan.fig %%Creator: fig2dev Version 3.2 Patchlevel 4 %%CreationDate: Thu Mar 31 14:03:35 2005 %%For: anders@paula (Anders Nedergaard Jensen) %%BoundingBox: 0 0 850 737 %%Magnification: 1.0000 %%EndComments /$F2psDict 200 dict def $F2psDict begin $F2psDict /mtrx matrix put /col-1 {0 setgray} bind def /col0 {0.000 0.000 0.000 srgb} bind def /col1 {0.000 0.000 1.000 srgb} bind def /col2 {0.000 1.000 0.000 srgb} bind def /col3 {0.000 1.000 1.000 srgb} bind def /col4 {1.000 0.000 0.000 srgb} bind def /col5 {1.000 0.000 1.000 srgb} bind def /col6 {1.000 1.000 0.000 srgb} bind def /col7 {1.000 1.000 1.000 srgb} bind def /col8 {0.000 0.000 0.560 srgb} bind def /col9 {0.000 0.000 0.690 srgb} bind def /col10 {0.000 0.000 0.820 srgb} bind def /col11 {0.530 0.810 1.000 srgb} bind def /col12 {0.000 0.560 0.000 srgb} bind def /col13 {0.000 0.690 0.000 srgb} bind def /col14 {0.000 0.820 0.000 srgb} bind def /col15 {0.000 0.560 0.560 srgb} bind def /col16 {0.000 0.690 0.690 srgb} bind def /col17 {0.000 0.820 0.820 srgb} bind def /col18 {0.560 0.000 0.000 srgb} bind def /col19 {0.690 0.000 0.000 srgb} bind def /col20 {0.820 0.000 0.000 srgb} bind def /col21 {0.560 0.000 0.560 srgb} bind def /col22 {0.690 0.000 0.690 srgb} bind def /col23 {0.820 0.000 0.820 srgb} bind def /col24 {0.500 0.190 0.000 srgb} bind def /col25 {0.630 0.250 0.000 srgb} bind def /col26 {0.750 0.380 0.000 srgb} bind def /col27 {1.000 0.500 0.500 srgb} bind def /col28 {1.000 0.630 0.630 srgb} bind def /col29 {1.000 0.750 0.750 srgb} bind def /col30 {1.000 0.880 0.880 srgb} bind def /col31 {1.000 0.840 0.000 srgb} bind def end save newpath 0 737 moveto 0 0 lineto 850 0 lineto 850 737 lineto closepath clip newpath 0.7 735.5 translate 1 -1 scale /cp {closepath} bind def /ef {eofill} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth} bind def /tr {translate} bind def /tnt {dup dup currentrgbcolor 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} bind def /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 4 -2 roll mul srgb} bind def /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def /$F2psEnd {$F2psEnteredState restore end} def $F2psBegin 10 setmiterlimit 0 slj 0 slc 0.06000 0.06000 sc % % Fig objects follow % % % here starts figure with depth 50 % Polyline 7.500 slw n 14142 12247 m 0 12247 l 6397 11664 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 6397 11664 l 9596 11372 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 9596 11372 l 9764 10497 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 9764 10497 l 10101 8748 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 10101 8748 l 10438 6998 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 14142 12247 m 10438 6998 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10438 6998 m 8586 4374 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10438 6998 m 10101 8748 l 8586 4374 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10101 8748 m 7744 4665 l 8586 4374 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10101 8748 m 8081 6998 l 7744 4665 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 8081 6998 m 6060 5248 l 7744 4665 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 8586 4374 m 7744 4665 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7744 4665 m 6060 5248 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 6060 5248 m 4377 5832 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 9764 10497 m 7576 9622 l 10101 8748 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10101 8748 m 7576 9622 l 7071 8164 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 10101 8748 m 7071 8164 l 8081 6998 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 8081 6998 m 7071 8164 l 6060 5248 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7071 8164 m 5555 7873 l 6060 5248 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 9596 11372 m 5050 10497 l 9764 10497 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 9764 10497 m 5050 10497 l 7576 9622 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7576 9622 m 5050 10497 l 7071 8164 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 7071 8164 m 5050 10497 l 5555 7873 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 5050 10497 m 3703 9331 l 5555 7873 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 5555 7873 m 3703 9331 l 6060 5248 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 3703 9331 m 3030 8748 l 6060 5248 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 6060 5248 m 3030 8748 l 4377 5832 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 3030 8748 m 0 12247 l 4377 5832 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 4377 5832 m 0 12247 l 7071 0 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 9596 11372 m 6397 11664 l 5050 10497 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 6397 11664 m 0 12247 l 5050 10497 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 5050 10497 m 0 12247 l 3703 9331 l cp gs col7 0.25 tnt ef gr gs col0 s gr % Polyline n 3703 9331 m 0 12247 l 3030 8748 l cp gs col7 0.25 tnt ef gr gs col0 s gr % here ends figure; $F2psEnd rs showpage gfan0.7/doc/installation.tex0000600000175000017500000003501214656430617015525 0ustar andersanders\newpage \section{Installation} In some situations installation of Gfan is easy while in other situations it can be very complicated. If you are satisfied with an old version of Gfan, then you might just use the package manager on the system. If you are using Linux and have root-access then the following might work \begin{verbatim} sudo apt-get install gfan \end{verbatim} or \begin{verbatim} sudo emerge gfan \end{verbatim} depending on your distribution and package manager. If you succeed, it is good to know which version was installed. Run \begin{verbatim} gfan _version \end{verbatim} Should this command fail, then you are using an old version of gfan. %If you are using MacOS the easiest way to install Gfan is to use precompiled executables: go to the Gfan webpage, go to the binaries.html subpage, and follow the instructions there. As an alternative to using package managers as above you can try to locate an executable file named ``gfan'' in the installation of other math software. SageMath, for example, contains a gfan executable. You also have the possibility of installing a precompiled executables: go to the Gfan webpage, go to the binaries.html subpage, and follow the instructions there. There is however only very few executables available. %% Rewrite this section. %% The apt-get linux trouble disappears if all includes of cdd files are of form ``cdd/set\_oper.h''. Now of course if we cannot run apt-get because we are not root we need to install cddlib manually. Here we should use configure to specify how that is done correctly. We should use --prefix=, --includedir=, and possibly --libdir=. %% The same thing goes for gmp???? EXCEPT THAT FOR SOME REASON gmp is allowed to be in /usr/include . %% Here is a good phrase: ``If you have root access to your maching and are running a linux system with a package manager you may install gmp and cddlib in one go by doing %% sudo apt-get install libcdd-dev %% Now go to Section ???'' %% \label{sec:installation} %% If you are using Linux the following might work %% \begin{verbatim} %% sudo apt-get install gfan %% \end{verbatim} %% or %% \begin{verbatim} %% sudo emerge gfan %% \end{verbatim} %% depending on your distribution and package manager. If you succeed, it is good to know which version was installed. Run %% \begin{verbatim} %% gfan _version %% \end{verbatim} %% Should this command fail, then you are using an old version of gfan. The rest of this section eplains how to install Gfan by compiling it from source on a Linux/Unix-like system with a modern version of gcc. You must already have this compiler installed on your system to follow the instructions. \name has been compiled successfully with gcc version~11.2.0. {\bf Two libraries are needed in order to compile \name: {cddlib} and { gmp}.} Users of Microsoft Windows may be able to use these installation instructions if they first install Cygwin. A new feature in \name version 0.4 is the possibility to link to the SoPlex \cite{wunderling} library. This does not add to the functionality of \name but improves speed of the polyhedral computations. In an attempt to keep the installation instructions simple, instructions for how to use SoPlex are given in a separate section, Subsection \ref{subsec:soplex}. {\color{red} If you are a lucky Linux user it will suffice to follow the red part of these instructions.} \subsection{Installation of the gmp library} GMP stands for GNU Multi Precision arithmetic library. This library must be installed on your system before you can install cddlib and gfan. %With the %current {\tt Makefile} of \name gmp must have been installed by the %root superuser. {\color{red} {\bf On some GNU/Linux systems the library is already installed.}} %\name can be compiled with gmp version 4.1.2. If your system does not already have gmp installed (which is the case if you have a usual Mac OS X installation) follow the directions in this section. \vspace{0.3cm} IF YOU ARE USING Mac OS X AND YOU ARE NOT AN EXPERT FOLLOW THE INSTRUCTIONS IN SECTION~\ref{sec:fink} INSTEAD. \vspace{0.3cm} \noindent Make a new directory and download {\tt gmp-4.2.2.tar.gz} from \centerline{\tt http://gmplib.org/} \noindent for example by typing \begin{verbatim} cd ~ mkdir tempdir cd tempdir wget http://ftp.sunet.se/pub/gnu/gmp/gmp-4.2.2.tar.gz \end{verbatim} Extract the file and go to the thereby created directory: \begin{verbatim} tar -xzvf gmp-4.2.2.tar.gz cd gmp-4.2.2 \end{verbatim} Run the configure script and specify the installation directory: \begin{verbatim} ./configure --prefix=$HOME/gfan/gmp \end{verbatim} %$ The above line specifies the installation directory which in this case will be the folder {\tt gfan/gmp} in your home directory. If you already have a directory by that name its content may be destroyed by the subsequent commands. Compile the gmp library and install it: \begin{verbatim} make make install \end{verbatim} Finally, a very important step when working with gmp: Let the program perform a self-test: \begin{verbatim} make check \end{verbatim} The gmp installation is now complete. The gmp files can be found in your home directory under {\tt gfan/gmp}. \subsubsection{Installing the gmp library on Mac OS X using fink} \label{sec:fink} {\bf This subsubsection might very well be outdated.}\\ Current versions of Mac OS X and the gmp library have a compatibility problem causing gmp to be compiled with errors if compiled without modifications. There exist packages of gmp for Mac OS X on the internet which have been compiled incorrectly. We recommend that Mac OS users use the packages provided by fink. \vspace{0.3cm} \noindent Install fink by following the instructions given on the page \centerline{\tt http://www.finkproject.org/download/index.php?phpLang=en} \noindent Having installed fink now simply type \begin{verbatim} fink install gmp \end{verbatim} The gmp library is now installed in the directory {\tt /sw}. \subsection{Installation of the cddlib library} Cddlib \cite{cdd} is a library for doing exact polyhedral computations, including solving linear programming problems. \name can be compiled with cddlib version 094. Older versions of cddlib will not work with \name version 0.2 or later. % The library can be installed %anywhere in the file system, so superuser access is not needed. Notice that cddlib itself needs gmp to compile. We give instructions on how to install cddlib. % If this does not work have a look in the cddlib manual. \vspace{0.3cm} \noindent \color{red} Make a directory for the compilation process if you did not do that already: \begin{verbatim} cd ~ mkdir tempdir cd tempdir \end{verbatim} \noindent Download the file {\tt cddlib-094i.tar.gz} from \begin{verbatim} https://people.inf.ethz.ch/fukudak/cdd_home/Cddtarfiles_pub/ \end{verbatim} % https://people.inf.ethz.ch/fukudak/cdd_home/ % http://www.ifor.math.ethz.ch/~fukuda/cdd_home/cdd.html % http://www.cs.mcgill.ca/~fukuda/soft/cdd_home/cdd.html into that directory. Decompress the file and change directory to the directory being created: \begin{verbatim} tar -xzvf cddlib-094i.tar.gz cd cddlib-094i \end{verbatim} Run the configure script. \color{black} Here you have the chance of telling cddlib where to find gmp and where to install itself. \begin{verbatim} ./configure --prefix="$HOME/gfan/cddlib" CFLAGS="-I$HOME/gfan/gmp/include -L$HOME/gfan/gmp/lib" \end{verbatim} %$ (On a single line). The above options say that cddlib should be installed in your home directory under {\tt gfan/cddlib} and where to look for gmp. If gmp was installed by fink (see Section~\ref{sec:fink}) you should run \begin{verbatim} ./configure --prefix="$HOME/gfan/cddlib" CFLAGS="-I/sw/include -L/sw/lib" \end{verbatim} instead. {\bf If gmp was already installed on your system in its default location run} \color{red} \begin{verbatim} ./configure --prefix="$HOME/gfan/cddlib" \end{verbatim} \color{black} %$ The content of {\tt gfan/cddlib} might be destroyed by the subsequent commands. Compile and install cddlib: \color{red} \begin{verbatim} make make install \end{verbatim} \color{black} You can now find the installed cddlib library files in your home directory under {\tt gfan/cddlib}. \noindent If you had super user access you could also just have run \begin{verbatim} ./configure \end{verbatim} when you configured cddlib. This would cause cddlib to be installed in its default place. \subsection{\name installation} \label{subsec:installation} \color{red} Download the file {\tt \nameversion .tar.gz} from the \name homepage located at: % \centerline{\tt http://www.soopadoopa.dk/anders/gfan/gfan.html.} % \centerline{\tt http://home.imf.au.dk/ajensen/software/gfan/gfan.html} \begin{verbatim} http://home.math.au.dk/jensen/software/gfan/gfan.html \end{verbatim} to your folder {\texttt tempdir}. \noindent Extract the file and enter the new directory by typing \begin{alltt} cd ~ cd tempdir tar -xzvf \nameversion.tar.gz cd \nameversion \end{alltt} \color{black} Gfan does not have a configure script, so you tell Gfan where to find gmp and cdd when you compile the program. For example you should type \begin{verbatim} make \end{verbatim} or \color{red} \begin{verbatim} make cddpath=$HOME/gfan/cddlib \end{verbatim} \color{black} %$ or \begin{verbatim} make cddpath=$HOME/gfan/cddlib gmppath=$HOME/gfan/gmp \end{verbatim} %$ or \begin{verbatim} make cddpath=$HOME/gfan/cddlib gmppath=/sw \end{verbatim} %$ depending on where you installed the libraries to compile the program. If the compiler complains about not being able to find include files when compiling, doing \begin{verbatim} make cddnoprefix=true \end{verbatim} might help. If you managed to compile and produce the file ``gfan'' you may wish to test the compiled \name before installing: \begin{verbatim} ./gfan _test \end{verbatim} The final step is to install the compiled program. Type \color{red} \begin{verbatim} make PREFIX=$HOME/gfan install \end{verbatim} %$ \color{black}or \begin{verbatim} make install \end{verbatim} depending on where you want Gfan installed. (The second line attempts to install it in {\tt /usr/local} by default). If you chose to install in the directory {\tt gfan} in your home folder \color{red}you will now find the file {\tt gfan} in the subdirectory {\tt gfan/bin} of your home folder together with a set of symbolic links\color{black}, for example {\tt gfan\_buchberger}. You can go to the subdirectory and type {\tt ./\exename{} --help} and {\tt ./\exename{}\_buchberger --help} in the shell to test them. Or you can ask Gfan to compute the reduced Gr\"obner bases of an ideal by typing \begin{alltt} ./\exename{}\_bases \end{alltt} followed by, for example, \begin{verbatim} Q[a,b,c] {a^3+b^2c-a,c^2-2/3b} \end{verbatim} \begin{remark} If for some reason you did get {\tt gfan} compiled but did not get the symbolic links made like {\tt gfan\_buchberger} you can still run that program by typing {\tt gfan \_buchberger} instead of {\tt gfan\_buchberger}. \end{remark} \subsection{SoPlex (for the advanced user only)} \label{subsec:soplex} {\bf These instructions do not work for linking with new versions of SoPlex.} Linking Gfan to SoPlex can lead to huge performance improvements. Notice however, that the strict license of SoPlex propagates through the software to your paper, requiring that you cite SoPlex appropriately if you choose to publish results based on SoPlex. Furthermore, with the standard SoPlex license you are only allowed to use SoPlex for non-commercial, academic work. Download SoPlex here (version 1.3.2 has been used successfully): \begin{verbatim} http://soplex.zib.de/download.shtml \end{verbatim} After download, follow the installation instructions \begin{verbatim} http://www.zib.de/Optimization/Software/Soplex/html/INST.html \end{verbatim} After having installed SoPlex, you must tell \name where SoPlex is located. Do this by editing the lines \begin{footnotesize} \begin{verbatim} SOPLEX_PATH = $(HOME)/math/software/soplex-1.3.2 SOPLEX_LINKOPTIONS = -lz $(SOPLEX_PATH)/lib/libsoplex.darwin.x86.gnu.opt.a \end{verbatim} \end{footnotesize} of the file \texttt{Makefile} in your \name directory. Most likely you need to change \texttt{darwin} to \texttt{linux} in the last line. Finally you need to recompile \name. First run \texttt{make clean} and then \texttt{make} with the options from Subsection~\ref{subsec:installation} together with the option \texttt{soplex=true}. Then do a \texttt{make install} as described in Subsection~\ref{subsec:installation}. %Please keep on reading --- in the next section we will see how to install all the additional \name programs. %\subsection{Installation to invoke additional features} %If you have root access to the system it is recommended that you type %\begin{verbatim} %make install %\end{verbatim} %in your shell after having compiled \name. This will copy the file {\tt \exename} to the directory {\tt /usr/local/bin} and \name will now be accessible from any directory and by any user by typing %\begin{alltt} %\exename %\end{alltt} %The {\tt make install} step above also creates symbolic links for the additional programs included in \name (like {\tt \exename \_buchberger} or {\tt \exename \_render}). If you chose not to run {\tt make install} you can install the additional programs in \name by typing %\begin{alltt} %./\exename installlinks %\end{alltt} %This will create a set of symbolic links to {\tt \exename} in the current directory. Invoking {\tt \exename} with one of these new names will have a different meaning. For example you may use {\tt \exename \_buchberger} to compute a single Gr\"obner basis. These programs have a help file which can be displayed by invoking the programs with the option {\tt --help}. The contents of the help files are also listed in Section \ref{sec:applist}. %\subsection{MacOS} %\subsubsection{Installing gmp from source} %\subsubsection{Installing with fink} %\begin{description} %\item{gmp} dgdgdfdg %\item{cddlib} %Download the file {\tt cddlib-094b.tar.gz} from %\begin{verbatim} %http://www.cs.mcgill.ca/~fukuda/soft/cdd_home/cdd.html %\end{verbatim} %into a directory. Decompress the file using {\tt gzip -d % cddlib-094b.tar.gz} and extract the tar archive using {\tt tar -xvf % cddlib-094b.tar}. Change directory to the newly created directory %{\tt cddlib-094b} and run %\begin{verbatim} %./configure --prefix="$HOME/cddlib" CFLAGS="-I/sw/include -L/sw/lib" %\end{verbatim} %When the following command is run the directory ``cddlib'' is created in your home directory. If it already exists the directory is destroyed. %\begin{verbatim} %make install %\end{verbatim} %\end{description} %\begin{center} % {\bf The complete list of functionalities available in CaTS and the % programs they need are listed at the end of the manual.} %\end{center} gfan0.7/doc/manual.tex0000600000175000017500000005070614656430617014310 0ustar andersanders\include{defines} \def\name{Gfan } \def\nameversion{gfan0.7} \def\exename{gfan} \begin{document} \title{\name version 0.7: A User's Manual} \author{Anders Nedergaard Jensen \thanks{Research partially supported by the Faculty of Science, University of Aarhus, Danish Research Training Council (Forskeruddannelsesr\aa det, FUR) , Institute for Operations Research ETH, grants DMS 0222452 and DMS 0100141 of the U.S. National Science Foundation and the American Institute of Mathematics. } \\ \\ %\small %Department of Mathematical Sciences, University of Aarhus %and\\ %\small %Institute for Operations Research, ETH Z\"urich } \maketitle \begin{abstract} \name is a software package for computing Gr\"obner fans and tropical varieties. These are polyhedral fans associated to polynomial ideals. The maximal cones of a Gr\"obner fan are in bijection with the marked reduced Gr\"obner bases of its defining ideal. The software computes all marked reduced Gr\"obner bases of an ideal. Their union is a universal Gr\"obner basis. The tropical variety of a polynomial ideal is a certain subcomplex of the Gr\"obner fan. \name contains algorithms for computing this complex for general ideals and specialized algorithms for tropical curves, tropical hypersurfaces and tropical varieties of prime ideals. In addition to the above core functions the package contains many tools which are useful in the study of Gr\"obner bases, initial ideals and tropical geometry. % Among these are an interactive traversal program % for Gr\"obner fans and programs for graphical renderings. The full list of commands can be found in Appendix~\ref{sec:applist}. For ordinary Gr\"obner basis computations \name is not competitive in speed compared to programs such as CoCoA, Singular and Macaulay2. %whose main function is to enumerate all % reduced Gr\"obner bases of a polynomial ideal. The reduced Gr\"obner bases yield the maximal cones in the Gr\"obner fan of the ideal. Several subcomputations can be issued and additional tools are included. Among these the highlights are:\\ %\noindent $\bullet$ commands for computing tropical varieties.\\ % \noindent $\bullet$ \texttt{\exename\_interactive} which allows % interactive walks in the Gr\"obner fan of an ideal,\\ % \noindent $\bullet$ commands for graphical renderings of Gr\"obner fans and monomial ideals.\\ % The full list of commands can be found in Section \ref{sec:applist}. % \name is a generalised version of the software \cite{cats} by the same author, but only little code is commen for the two projects. % CaTS began as a re-implementation of TiGERS, a software package to % compute state polytopes of toric ideals, written by Birkett Huber % based on algorithms in \cite{huber}. % Essential for most computations in \name are the field operations and the solving of linear programs. For this the libraries \texttt{gmp} and \cite{gmp} and \texttt{cdd} \cite{cdd} are used. In the link proces the libraries are configured to do exact arithmetics. It is not possible to compile \name without these libraries installed. \end{abstract} \tableofcontents \newpage \normalsize \section{Introduction} \name is a software package for computing \emph{Gr\"obner fans}~\cite{MoRo} and \emph{tropical varieties}~\cite{tropgrass} of polynomial ideals. It is an implementation of the algorithms appearing in \cite{fukuda} and \cite{ctv}. These two papers are joint work with Tristram Bogart, Komei Fukuda, David Speyer, Bernd Sturmfels and Rekha Thomas. A combined presentation can be found in~\cite{thesis}. For toric and lattice ideals, Gr\"obner fan programs already existed: TiGERS~\cite{huber} and CaTS~\cite{cats}. \name works on any ideal in $\Q[x_1,\dots,x_n]$. Gfan is based on Buchberger's algorithm~\cite{Buch} and the local basis change procedure~\cite{collart}. For traversal of Gr\"obner fans the simplex method, the reverse search technique \cite{avis} and symmetry exploiting algorithms are used. This allows enumeration of fans with millions of cones. For tropical computations these methods have been developed further. \name has been used for studying the structure of the Gr\"obner fan. Among the new results is an example of a Gr\"obner fan which is not the normal fan of a polyhedron \cite{jensen}. The software is intended to be run in a UNIX style environment. In particular, the software works on GNU/Linux and on Mac OS X (with some effort). Gfan uses the GNU multi-precision arithmetic library \cite{gmp} and cddlib \cite{cdd} for doing exact arithmetics and solving linear programming problems, respectively. A new feature of version 0.4 is the possibility to use the SoPlex \cite{wunderling} linear programming solver which does its computations in floating point arithmetics. \name verifies LP certificates in exact arithmetics and falls back on cddlib in case of a rounding error. The first section of this manual is a very short introduction to Gr\"obner fans and algorithms for computing them. The second section describes the installation procedure of the software and the third gives some examples of how to use it. Section \ref{sec:tropical} explains how Gfan can be used for computing tropical varieties, prevarieties and tropical bases. More details on the data formats and programs are given in Appendix \ref{sec:dataformats} and \ref{sec:applist}. {\bf Note for the reader:} As opposed to scientific journals the World Wide Web has the advantage that its contents can be changed after publication. If you have suggestions for improvements of this manual do not hesitate to let me know. Suggestions for the installation instructions are of particular interest since I only have access to / experience with a limited number of computer systems. \vspace{1cm} \noindent {\bf Acknowledgments:} The first version of this software was written in the fall 2003 during the authors visit to the Institute for Operations Research, ETH Z\"urich. Many features have been added since then. Rekha Thomas and Komei Fukuda have been involved in the development of the Gr\"obner fan algorithms, see the joint paper \cite{fukuda}. The tropical algorithms were developed in the joint paper \cite{ctv} with Tristram Bogart, David Speyer, Bernd Sturmfels and Rekha Thomas. The author is thankful to the following people and institutions for initially supporting the research: Komei Fukuda and Hans-Jakob L\"uthi (Institute for Operations Research, ETH Z\"urich), Douglas Lind and Rekha Thomas (University of Washington, Seattle) and the American Institute of Mathematics. The research has later been supported by University of Aarhus, University of Minnesota, TU-Berlin, the German Research Foundation (DFG) through the institutional strategy of Georg-August-Universit\"at G\"ottingen and The Danish Council for Independent Research. The author would also like to thank his former advisor Niels Lauritzen for encouraging the study in the area and the many people who have been testing, been using and helped improving the software. Other contributors to the Gfan source code include: \begin{itemize} \item Bjarne Knudsen (abstract parallel graph traverser used for mixed volume computation and tropical prevarieties) \item Anton Leykin \item Yue Ren \item Josephine Yu \end{itemize} \subsection{The Gr\"obner fan of an ideal} The Gr\"obner fan of an ideal $I\subseteq k[x_1,\dots,x_n]$ in a polynomial ring over a field $k$ is a polyhedral complex consisting of cones in $\R^n$. We provide a short definition and refer the reader to the papers mentioned above for details. \begin{definition} Let $\omega\in\R^n$ and $a\in\N^n$. We define $x^a:=x_1^{a_1}\cdots x_n^{a_n}$. The \emph{$\omega$-weight} of $\alpha x^a$ with $\alpha\in k\setminus\{0\}$ is $\omega\cdot a$. For $f\in k[x_1,\dots,x_n]$ we define its \emph{initial form} $\init_\omega(f)$ to be the sum of all terms in $f$ with maximal $\omega$-weight. For an ideal $I\subseteq k[x_1,\dots,x_n]$ we define the \emph{initial ideal} to be $\init_\omega(I):=\langle \init_\omega(f):f\in I\rangle$. \end{definition} Notice that initial ideals might not be monomial ideals. If for some $\omega\in\R_{>0}^n$ we have $\init_\omega(I)=I$ then we say that $I$ is \emph{homogeneous} in the $\omega$-grading. We now fix the ideal $I\subseteq k[x_1,\dots,x_n]$ and consider the equivalence relation: $$u\sim v \Leftrightarrow \init_u(I)=\init_v(I)$$ on vectors $u,v\in \R^n$. If $I$ is homogeneous then any equivalence class contains a positive vector. Any equivalence class containing a positive vector is convex. Moreover, its closure is a polyhedral cone. We use the notation $$C_\omega(I):=\overline{\{u\in\R^n:\init_u(I)=\init_\omega(I)\}}$$ to denote the closure of the equivalence class containing $\omega$. \begin{definition}\cite[Definition~2.8]{fukuda} \label{def:gfan} Let $I\subseteq k[x_1,\dots,x_n]$ be an ideal. The \emph{Gr\"obner fan} of $I$ is the collection of cones $C_\omega(I)$ where $\omega\in\R_{>0}^n$ together with all their non-empty faces. \end{definition} Any cone in the Gr\"obner fan is called a \emph{Gr\"obner cone}. The relative interior of any Gr\"obner cone is an equivalence class. The equivalence class containing $0$ is a subspace of $\R^n$ called the \emph{homogeneity space} of $I$. The Gr\"obner fan is a polyhedral fan; see \cite{sturmfels} or \cite{fukuda}. The \emph{support} of the Gr\"obner fan i.e. the union of its cones is called the \emph{Gr\"obner region} of $I$. If $I$ is homogeneous then the Gr\"obner region is $\R^n$ and, moreover, the Gr\"obner fan is the normal fan of the \emph{state polytope} of $I$; see \cite{sturmfels} for a construction of this polytope. The \emph{lineality space} of a polyhedral cone is defined as the largest subspace contained in the cone. The common lineality space of all cones in the Gr\"obner fan equals the homogeneity space of $I$. \begin{remark} Definition~\ref{def:gfan} was chosen since it gives the nicest Gr\"obner cones. In general our Gr\"obner fan does not coincide with the ``restricted'' Gr\"obner fan nor the ``extended'' Gr\"obner fan defined in \cite{MoRo}. The common refinement (i.e. ``intersection'') of $\R_{\geq 0}^n$ and our Gr\"obner fan is the restricted Gr\"obner fan. For homogeneous ideals our definition coincides with \cite[page~13]{sturmfels} (which only contains a definition for homogeneous ideals). \end{remark} \subsection{Gr\"obner bases} Given a \emph{term order} $\prec$ the \emph{initial term} $\init_\prec(f)$ of a polynomial $f$ is defined and, analogously to the $\omega$-initial ideal above, so is the \emph{initial ideal} $\init_\prec(I)$ of an ideal $I$. We remind the reader that given generators for and ideal $I\subseteq k[x_1,\dots,x_n]$ and a term order $\prec$ Buchberger's Algorithm produces a \emph{reduced} Gr\"obner basis $\G_\prec(I)$. This basis is unique. It is useful to introduce the notion of a \emph{marked} polynomial and a \emph{marked} reduced Gr\"obner basis. A polynomial is marked if one of its terms has been distinguished. When writing such a polynomial we may either underline the distinguished term or we may by convention write the distinguished term as the first one listed. Gfan uses this second convention. A Gr\"obner basis $\G_\prec(I)$ is marked if the initial term $\init_\prec(f)$ of every polynomial $f\in\G_\prec(I)$ has been marked i.e. distinguished. \begin{example} The polynomial ideal $I=\langle x+y\rangle\subseteq \Q[x,y]$ has two marked reduced Gr\"obner bases: $\{\underline{x}+y\}$ and $\{x+\underline{y}\}$. Gfan would write these Gr\"obner bases as $\{x+y\}$ and $\{y+x\}$. \end{example} By definition of Gr\"obner bases the initial ideal $\init_\prec(I)$ is easily read off from the marked (reduced) Gr\"obner basis $\G_\prec(I)$, namely, it is generated by the marked terms. In fact, for $I\subseteq k[x_1,\dots,x_n]$ fixed the follow three finite sets are in bijection: \begin{itemize} \item The set of marked reduced Gr\"obner bases for $I$. \item The set of monomial initial ideals $\init_\prec(I)$ with respect to term orders. \item The set of $n$-dimensional Gr\"obner cones in the Gr\"obner fan of $I$. \end{itemize} The map from the first set to the second set has already been described. A monomial ideal $\init_\prec(I)$ in the second set is mapped to $\overline{\{v\in\R^n:\init_v(I)=\init_\prec(I)\}}$ in the third set. Going from the first set to the third is easy, namely the inequalities can be read off from the exponents of the marked reduced Gr\"obner basis. % The monomial initial ideals (with respect to term %orders) of $I$ are in bijection with the marked reduced Gr\"obner %bases of $I$ and with the full dimensional cones in the Gr\"obner fan %of $I$. By a %\emph{marked Gr\"obner basis} we mean a set of polynomials which is a %Gr\"obner basis with respect to some term order with the initial term %of each polynomial, with respect to the term order, being %distinguished. We write the distinguished term as the first in the %list of terms when writing a polynomial. Knowing a marked reduced %Gr\"obner basis, its initial ideal and equations defining its %Gr\"obner cone are easily read off. Thus a useful way to represent the Gr\"obner fan of an ideal is by the set of its marked reduced Gr\"obner bases. %The original definition of the Gr\"obner fan was given in %\cite{MoRo}. Another reference is \cite{sturmfels}. %We need to be precise about which cones are computed. A full dimensional Gr\"obner cones of $I$ is a set of the form %$$C_\prec(I):=\overline{\{\omega\in\R^n:in_\omega(I)=in_\prec(I)\} }$$ %where $\prec$ is a term order. The output of a Gr\"obner fan computation is the list of these full-dimensional cones as $\prec$ varies over all term orders. Each cone is represented by the reduced Gr\"obner basis of $I$ with respect to $\prec$. The reduced Gr\"obner basis is denoted by $\G_\prec(I)$. %If $I$ is a homogeneous ideal the full-dimensional Gr\"obner cones cover $\R^n$. If $I$ is not homogeneous this might not be the case. In any case the full-dimensional Gr\"obner cones cover $\R^n_{\geq 0}$. \subsection{Algorithmic background} We briefly describe the algorithms implemented in \name for computing Gr\"obner fans. The algorithms are divided into two parts, the local algorithms and the global algorithms. For more details we refer to \cite{fukuda} and \cite{symmetricfans}. \subsubsection{Local computations} There are two local computations that need to be done: \begin{itemize} \item Given a full-dimensional Gr\"obner cone by its reduced Gr\"obner basis, we need to find its facets. To be precise we need to find a normal for each facet. \item Given a full-dimensional Gr\"obner cone represented by its reduced Gr\"obner basis and a normal for one of its facets we need to compute the other full-dimensional cone having this facet as a facet (if one exists). Again, the computed cone should be represented by a reduced Gr\"obner basis. \end{itemize} To do the first computation we need the following theorem telling us how to read of the cone inequalities from the reduced Gr\"obner basis: \begin{theorem} Let $\G_\prec(I)$ be a reduced Gr\"obner basis. For any vector $u\in\R^n$ $$\init_u(I)=\init_\prec(I) \Leftrightarrow \forall g\in\G_\prec(I):\init_u(g)=\init_\prec(g)$$ \end{theorem} Each $g$ introduces a set of strict linear inequalities on $u$. By making these inequalities non-strict we get a description of the closed Gr\"obner cone of $\G_\prec(I)$. This gives us a list of possible facet normals of the cone. Linear programming techniques are now applied to find the true set of normals among these. Suppose we know a reduced Gr\"obner basis $\G_\prec(I)$ and a normal of one of its facets. If $\omega$ is a vector in the relative interior of the facet we can compute a Gr\"obner basis of $\init_\omega(I)$ with respect to $\prec$ by picking out a certain subset of the terms in $\G_\prec(I)$, see \cite[Corollary 1.9]{sturmfels}. The initial ideal $\init_\omega(I)$ has at most two reduced Gr\"obner bases since it is homogeneous with respect to any grading given by vectors in the $n-1$ dimensional subspace spanned by the facet. The other Gr\"obner basis of $\init_\omega(I)$ can be computed using a term order represented by the outer normal of the facet. A lifting step will take the Gr\"obner basis for $\init_\omega(I)$ to a Gr\"obner basis for $I$ representing the neighbouring cone. See \cite[Subroutine 3.7]{sturmfels}. The method described above is the local change procedure due to \cite{collart}. The procedure simplifies in our case since: \begin{itemize} \item We only walk through facets. Thus, the ideal $\init_\omega(I)$ has at most two reduced Gr\"obner bases. \item We know the facet normal. Thus, there is no reason for computing $\omega$. \end{itemize} \subsubsection{Global computations} \label{subsec:global computations} We define the graph $G$ whose set of vertices consists of all reduced Gr\"obner bases of $I$ with two bases being connected if their cones share a common facet containing a strictly positive vector. With the two subroutines in the previous section it is easy to do a traditional vertex enumeration of $G$ starting from some reduced Gr\"obner basis. However, for such algorithm to work it would need to store the boundary of the already enumerated vertices to guarantee that we do not enumerate the same vertex more than ones. For a planar graph this might not seem too bad but as the dimension grows the boundary can contain a huge number of elements. Storing these elements would require a lot of memory and sometimes more memory than the size of the computers RAM which would cause the computation to slow down. A better way to do the enumeration is by the reverse search strategy \cite{avis}. If there is an easy rule for orienting the edges of a graph so that it has a unique sink and no cycles it is also easy to find a spanning tree for the graph. The reverse search will traverse this spanning tree. The method works well for enumerating vertices of polytopes since an orientation of the edges with respect to a generic vector will have a unique sink and no cycles. A proof in \cite{fukuda} shows that a similar orientation orienting $G$ with respect to a term order will also give an acyclic orientation with a unique sink and thus allow enumeration by reverse search. Reverse search is the default enumeration method in \name. If the ideal is symmetric we may want to do the Gr\"obner basis enumeration up to symmetry. For example the ideal $I=\langle a-b\rangle\subseteq k[a,b]$ is invariant under the exchange of $a$ and $b$. The ideal has two marked Gr\"obner bases $\{\underline{a}-b\}$ and $\{\underline{b}-a\}$, each defining a full dimensional Gr\"obner cone in $\R^2$. Up to symmetry they are equal. We only want to compute one of them. In general $I\subseteq k[x_1,\dots,x_n]$ is invariant under all permutations of some subgroup ${\bf G}\subseteq S_n$. Applying a permutation in ${\bf G}$ to a marked reduced Gr\"obner basis of $I$ we get another marked reduced Gr\"obner basis of $I$. Hence, ${\bf G}$ acts on the set of marked reduced Gr\"obner bases of $I$. We wish to compute only one representative for each orbit. We apply techniques similar to the ones used in \cite{rambau} for computing regular triangulations of point configurations up to symmetry. Often the number of orbits is much smaller than the number of reduced Gr\"obner bases and we save a lot of time by not computing them all. \input{installation} \input{using} \input{tropical} \newpage \appendix \input{dataformats} \newpage \section{Application list} \label{sec:applist} This section contains the full list of programs in Gfan. For each program its help file is listed. The help file of a program can also be displayed by specifying the \texttt{--help} option when running the program. Besides the options listed in this section all programs have options {\bf -\hspace{0.013cm}-log1}, {\bf -\hspace{0.013cm}-log2},... which tell Gfan how much information to write to ``standard error'' while a computation is running. {\bf These options are VERY USEFUL when you wish to know if Gfan is making any progress in its computation.} Additional options which can be used for all programs, but which are not listed in the following subsections are: \begin{description} \item{\bf -\hspace{0.013cm}-stdin value} Specify a file to use as input instead of reading from the standard input. \item{\bf -\hspace{0.013cm}-stdout value} Specify a file to write output to instead of writing to the standard output. \item{\bf -\hspace{0.013cm}-xml} To let polyhedral fans be output in an XML format instead of in the text format. (The XML files are not readable by Gfan.) \end{description} \input{apptable.tex} \newpage \bibliographystyle {hplain} \bibliography{jensen.bib} \end{document} gfan0.7/doc/dataformats.tex0000644000175000017500000003623414656430617015350 0ustar andersanders\section{Data formats} \label{sec:dataformats} In this section we describe how polynomials, lists, marked Gr\"obner bases etc. are represented as ASCII character strings. These strings will be input to the programs by typing or by redirecting the standard input and be output by the program on the standard output which may be the screen, a pipe or a file. Usually files are used for input. For example, \begin{verbatim} gfan_bases < inputfile.txt > outputfile.txt \end{verbatim} will read its input from {\tt inputfile.txt} and write its output to {\tt outputfile.txt}. The following is an example of how to use pipes for computing a universal Gr\"obner basis of the input: \begin{verbatim} gfan_bases < inputfile.txt | gfan_polynomialsetunion > outputfile.txt \end{verbatim} In general spaces and newlines in the input are ignored, but for the polyhedral formats described in Section~\ref{sec:format fan} and Section~\ref{sec:format cone} the rules are different. \subsection{Fields} Two kinds of fields are supported: \begin{itemize} \item The field $\Q$ of rationals which is represented by the string ``\texttt{Q}''. \item Fields of the form $\Z/p\Z$ where $p$ is a prime number. These fields are represented by text strings ``\texttt{Z/pZ}'' where \texttt{p} is the prime number. For example ``\texttt{Z/3Z}'' or ``\texttt{Z/17Z}''. In Gfan the prime number $p$ must be less than $32749$. \end{itemize} \subsection{Variables} A variable is denoted by its name which is an string of characters. The exact rules for which names are allowed have not been decided on in this version of Gfan and therefore Gfan accepts most names. However, white spaces, commas and ``\texttt{]}'' are not allowed as characters in the name. Furthermore one should not choose variable names such that one name is a starting substring of an other -- don't choose names such as ``\texttt{x1}'' and ``\texttt{x}'' in the same polynomial ring. \subsection{Polynomial rings} A polynomial ring is represented first by a field and then by a list of variable names. The list begins with ``\texttt{[}'' and ends with ``\texttt{]}''. Names are separated by commas. The ordering of the variables matters as this is also the ordering used for the entries of for example weight vectors. Examples: ``\texttt{Z/2Z[a,b]}'' and ``\texttt{Q[x\_1,x\_2,y1,y2]}''. \subsection{Polynomials} %The variables in the polynomial ring are named {\tt a},...,{\tt %z},{\tt A},...,{\tt Z}. The number of variables in the polynomial ring %is specified implicitly. It depends on the variables used in the %input. It is important to note that the first variable is always {\tt %a}, meaning that if, for example, {\tt h} is used then all variables %from {\tt a} to {\tt g} are also used and memory is allocated for %these variables. Thus the program will require more memory and be much %slower if the user uses a variable without using the previous ones. % %compared to start the naming with {\tt a}. If you already have a file %where the variables have different names then have a look at %Subsection \ref{applist:_substitute}. Coefficients in the field are given as fractions. A coefficient equals its numerator multiplied by the inverse of the denominator. The numerator and denominator themselves are given by an integer in $\Z$ which is mapped to the field by the homomorphism sending $1\in\Z$ to $1$ in the field. The '{\tt /}' character and the denominator can be left out if the denominator is $1$. If a field with non-zero characteristic was chosen one should be careful that the denominator is not $0$. Monomials are written in the following formats: \begin{itemize} \item \texttt{a\symbol{94}4dc} \item \texttt{a4dc} \item \texttt{aaadac} \end{itemize} The monomial $1$ cannot be written without writing it as a term in the usual way ``\texttt{1}''. Any other term is either a monomial or a coefficient and a monomial. A polynomial is a list of terms separated by {\tt +}. The {\tt +} may be left out if the numerator of the next monomial is negative. That description did not cover every detail. Here is an example: \begin{verbatim} hello world - 3/8 a2+23abcge^4 +1 \end{verbatim} In our usual notation we would write it like this: $dehl^{3}o^{2}rw+1+23abce^{4}g-{3\over 8}a^{2}$. {\bf It is important to note that the first term written in a polynomial is distinguished from the other terms in the polynomial. This is useful when specifying marked Gr\"obner bases.} \subsection{Lists} A list begins with a '{\tt \{}' or a '{\tt (}', contains elements separated by '{\tt ,}' and is ended by a '{\tt \}}' or a '{\tt )}'. Different types of lists may be needed when specifying input for the various programs: \begin{description} \item[An integer vector] is a list of integers. \item[A list of integer vectors] is a list of integer vectors. Such lists are used for example when specifying generators for subgroups of $S_n$. \item[A polynomial list] (or a polynomial set) is a list of polynomials. \item[A Gr\"obner basis] is the list of polynomials in a Gr\"obner basis with the leading term of each listed polynomial being the initial term with respect to a term order for which this a Gr\"obner basis. \item[A list of polynomial sets] is a list of polynomial sets. Often the polynomial sets are required to be Gr\"obner bases. \item[An ideal] is written as a list of polynomials generating it. \end{description} For all other lists than integer vectors the characters '{\tt \{}' and '{\tt \}}' are used to start and end the list. \subsection{Permutations} When exploiting the symmetry of an ideal one needs to input permutations to the program. Each permutation is specified by a vector. The length of the vector should equal the number of elements being permuted - for example the number of variables in the polynomial ring. The first element in the vector describes where the first element goes and so on. Of course we start indexing from $0$. The following vectors specify the identity, a transposition and a 3-cycle, respectively, on an ordered set of four elements: \begin{itemize} \item {\tt (0,1,2,3)} \item {\tt (1,0,2,3)} \item {\tt (0,3,1,2)} \end{itemize} \subsection{Polyhedral fans} \label{sec:format fan} \label{format:fan} The output format for polyhedral fans is intended to be Polymake \cite{polymake} compatible. Polymake recently switched to an XML based format. Gfan will keep outputting data in the old text style by default as it is more convienient for the command line Gfan user. The option \texttt{--xml} switches output to being XML. In the Polymake world, the output objects will have type \texttt{SymmetricFan}. The new XML files cannot be read by Gfan at the moment, while the old non-XML format cannot be read by any version of Polymake. In the following we describe only the text (non-XML) format. For the XML format we refer to the Polymake documentation. The text representation of a fan begins with the lines \begin{verbatim} _application fan _version 2.2 _type SymmetricFan \end{verbatim} After this follows a list of properties. For example \begin{verbatim} LINEALITY_SPACE 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 -1 -1 0 0 0 -1 -1 -1 1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 \end{verbatim} Each property has a name and must be assigned a value of a certain type. You can read more about the philosophy of the format in the Polymake documentation. \begin{example} \label{ex:polyformat} The ideal $I=\langle ab-c,bc-a,ca-b\rangle$ has a cyclic symmetry. If we run the commands \begin{verbatim} gfan --symmetry -e | gfan_topolyhedralfan --symmetry \end{verbatim} on the input \begin{verbatim} Q[a,b,c] {ab-c,bc-a,ca-b} {(1,2,0)} \end{verbatim} we get a polyhedral representation of the Gr\"obner fan of $I$: \begin{verbatim} _application PolyhedralFan _version 2.2 _type PolyhedralFan AMBIENT_DIM 3 DIM 3 LINEALITY_DIM 0 RAYS 1 1 0 # 0 1 0 1 # 1 0 1 1 # 2 0 1 0 # 3 1 0 0 # 4 0 0 1 # 5 2 1 1 # 6 1 1 2 # 7 1 2 1 # 8 1 1 1 # 9 N_RAYS 10 LINEALITY_SPACE ORTH_LINEALITY_SPACE 0 0 1 0 1 0 1 0 0 F_VECTOR 1 10 18 9 CONES {} # New orbit # Dimension 0 {0} # New orbit # Dimension 1 {1} {2} {3} # New orbit {4} {5} {6} # New orbit {7} {8} {9} # New orbit {0 3} # New orbit # Dimension 2 {1 4} {2 5} {0 4} # New orbit {1 5} {2 3} {6 9} # New orbit {7 9} {8 9} {0 6} # New orbit {1 7} {2 8} {0 8} # New orbit {1 6} {2 7} {3 8} # New orbit {4 6} {5 7} {0 3 8} # New orbit # Dimension 3 {1 4 6} {2 5 7} {0 4 6} # New orbit {1 5 7} {2 3 8} {0 6 8 9} # New orbit {1 6 7 9} {2 7 8 9} MAXIMAL_CONES {0 3 8} # New orbit # Dimension 3 {1 4 6} {2 5 7} {0 4 6} # New orbit {1 5 7} {2 3 8} {0 6 8 9} # New orbit {1 6 7 9} {2 7 8 9} PURE 1 \end{verbatim} The most important properties are ``RAYS'' and ``CONES''. A ray is given by a relative interior point and a cone is given by a list of indices of rays that will generate the cone. We may compare this combinatorial data to the drawing of the Gr\"obner fan given in Figure~\ref{fig:polyformat}. Notice that this example is particularly simple as the dimension of the homogeneity space of $I$ is $0$. \end{example} \begin{figure} \begin{center} \epsfig{file=polyformat.eps,height=5.9cm} \end{center} \caption{The Gr\"obner fan in Example~\ref{ex:polyformat} intersected with the standard simplex in $\R^3$.} \label{fig:polyformat} \end{figure} The symbol ``\#'' is used for writing comments in the file. The comments should not be considered a part of the file. The comments are used by Gfan to let the user know about dimensions, orbits and indices. A detailed description of the properties follows in the following. \subsubsection{Data types} In Gfan's Polymake format the following data types are supported: \begin{description} \item{Cardinal:} One non-negative integer. \item{Boolean:} 0 or 1. \item{Matrix:} An array of integer vectors. \item{IncidenceMatrix:} An array of sets of integers. \item{Vector:} An integer vector. %\item{String} \end{description} \subsubsection{Properties} Before we describe the properties we need to make a few definitions. We do not consider the empty set to be a cone nor a face of a cone. \begin{definition} The \emph{lineality space} of a polyhedral cone is the largest subspace contained in the cone. \end{definition} The lineality space is the smallest face of the cone and if two cones are in the same polyhedral fan then they must have the same lineality space. We define the \emph{lineality space} of a fan to be the common lineality space of its cones. In the special case of a (non-restricted) Gr\"obner fan or a tropical variety the lineality space of the fan coincides with the homogeneity space of the defining ideal. \begin{definition} A cone (in a fan) is called a \emph{ray} if its dimension is one larger than the dimension of its lineality space. \end{definition} A ray can be represented by a vector in its relative interior. This vector is contained in the cone but not contained in any of its proper faces. The representation is not unique since the cone is invariant under translation by vectors in its lineality space. A Polyhedral fan in Gfan can have a subset of the following properties: \begin{description} \item{AMBIENT\_DIM} is a \emph{Cardinal} whose value is the dimension of the vector space in which the fan lives. If the fan is a Gr\"obner fan or a tropical variety then this number equals the number of variables in the polynomial ring of the defining ideal. \item{DIM} is a \emph{Cardinal} whose value is the dimension of the highest dimensional cone in the fan. \item{LINEALITY\_DIM} is a \emph{Cardinal} whose value is the dimension of the lineality space of the fan. \item{RAYS} is a \emph{Matrix}. The rows of the matrix are vectors representing the rays of the fan --- one for each ray. The rows are ordered and Gfan writes an index as a comment to make the file human readable. \item{N\_RAYS} is a \emph{Cardinal} which equals the number of rays in the fan. \item{LINEALITY\_SPACE} is a \emph{Matrix} whose rows form a basis for the lineality space of the fan. \item{ORTH\_LINEALITY\_SPACE} is a \emph{Matrix} whose rows form a basis for the orthogonal complement of the lineality space of the fan. \item{F\_VECTOR} is a \emph{Vector}. The number of entries is DIM$-$LINEALITY\_DIM+1. The $i$th entry is the number of cones in the fan of dimension\\ $i+$LINEALITY\_DIM$-1$. \item{CONES} is an \emph{IncidenceMatrix}. The section contains a line for each cone in the fan. Each line is the set of indices of the rays contained in the corresponding cone. \item{MAXIMAL\_CONES} is an \emph{IncidenceMatrix} and similar to CONES except that only cones which are maximal with respect to inclusion are listed. \item{PURE} is a \emph{Boolean}. The value is $1$ if the polyhedral fan is pure and $0$ otherwise. \item{MULTIPLICITIES} is a \emph{Matrix} with one column. An entry is the multiplicity of a maximal cone. Usually cones in polyhedral fans do not have multiplicities. Thus this property only makes sense for \emph{weighted} polyhedral fans of which tropical varieties is a special case. The ordering of the rows in this property is consistent with the ordering in MAXIMAL\_CONES. \item{RAY\_VALUES} is a \emph{Matrix} with just one column. It is used when the fan is meant to specify a piece-wise linear (or tropical rational) function. The function value on the $i$th ray of the fan is listed in the $i$th row of the matrix. \item{LINEALITY\_VALUES} is a \emph{Matrix} with just one column. It is used when the fan is meant to specify a piece-wise linear (or tropical rational) function. The function value on the $i$th generator of the lineality space (stored in LINEALITY\_SPACE) is listed in the $i$th row of the matrix. \end{description} Besides sections listed above, the sections MAXIMAL\_CONES\_ORBITS, CONES\_ORBITS and MULTIPLICITIES\_ORBITS are introduced when doing symmetric computations with the \texttt{--symmetry} option. These sections are analogous to MAXIMAL\_CONES, CONES and MULTIPLICITIES except that they operate on the level of orbits of cones with respect to the symmetry rather than cones. %\subsubsection{Dissimilarities between Gfan and Polymake} %In Polymake polyhedra are affine and for this reason the first entry of a vector has a special meaning. This is not the case in Gfan. %%In Polymake, if for example the section LINEALITY\_SPACE is empty it represents a $0\times 0$ matrix. In Gfan it represents a $0\times n$ matrix where $n$ is the dimension of the ambient space (AMBIENT\_DIM). \subsection{Polyhedral cones} \label{format:cone} \label{sec:format cone} %Polyhedral cones are represented in a Polymake compatible format; see the previous section. The string representation of a polyhedral cone starts with \begin{verbatim} _application PolyhedralCone _version 2.2 _type PolyhedralCone \end{verbatim} After this follows the properties. For polyhedral cones they are as follows. \begin{description} \item{AMBIENT\_DIM} --- see previous section. \item{DIM} is a \emph{Cardinal} whose value is the dimension of the cone. \item{IMPLIED\_EQUATIONS} is a \emph{Matrix} whose rows form a basis of the space of linear forms vanishing on the cone. \item{LINEALITY\_DIM} --- see previous section. \item{LINEALITY\_SPACE} --- see previous section. \item{FACETS} is a \emph{Matrix} which contains an outer normal vector for each facet of the cone. \item{RELATIVE\_INTERIOR\_POINT} is a \emph{Vector} in the relative interior of the cone. \end{description} gfan0.7/doc/hplain.bst0000600000175000017500000004640014656430617014272 0ustar andersanders% hplain: adds eprint field (www-admin@xxx.lanl.gov) % an extension of: % BibTeX standard bibliography style `plain' % version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09. % Copyright (C) 1985, all rights reserved. % Copying of this file is authorized only if either % (1) you make absolutely no changes to your copy, including name, or % (2) if you do make changes, you name it something other than % btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst. % This restriction helps ensure that all standard styles are identical. % The file btxbst.doc has the documentation for this style. ENTRY { address author booktitle chapter edition editor eprint howpublished institution journal key month note number organization pages publisher school series title type volume year } {} { label } INTEGERS { output.state before.all mid.sentence after.sentence after.block } FUNCTION {init.state.consts} { #0 'before.all := #1 'mid.sentence := #2 'after.sentence := #3 'after.block := } STRINGS { s t } FUNCTION {output.nonnull} { 's := output.state mid.sentence = { ", " * write$ } { output.state after.block = { add.period$ write$ newline$ "\newblock " write$ } { output.state before.all = 'write$ { add.period$ " " * write$ } if$ } if$ mid.sentence 'output.state := } if$ s } FUNCTION {output} { duplicate$ empty$ 'pop$ 'output.nonnull if$ } FUNCTION {output.check} { 't := duplicate$ empty$ { pop$ "empty " t * " in " * cite$ * warning$ } 'output.nonnull if$ } FUNCTION {output.bibitem} { newline$ "\bibitem{" write$ cite$ write$ "}" write$ newline$ "" before.all 'output.state := } FUNCTION {fin.entry} { add.period$ write$ newline$ } FUNCTION {new.block} { output.state before.all = 'skip$ { after.block 'output.state := } if$ } FUNCTION {new.sentence} { output.state after.block = 'skip$ { output.state before.all = 'skip$ { after.sentence 'output.state := } if$ } if$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {new.block.checka} { empty$ 'skip$ 'new.block if$ } FUNCTION {new.block.checkb} { empty$ swap$ empty$ and 'skip$ 'new.block if$ } FUNCTION {new.sentence.checka} { empty$ 'skip$ 'new.sentence if$ } FUNCTION {new.sentence.checkb} { empty$ swap$ empty$ and 'skip$ 'new.sentence if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {emphasize} { duplicate$ empty$ { pop$ "" } { "{\em " swap$ * "}" * } if$ } INTEGERS { nameptr namesleft numnames } FUNCTION {format.names} { 's := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't := nameptr #1 > { namesleft #1 > { ", " * t * } { numnames #2 > { "," * } 'skip$ if$ t "others" = { " et~al." * } { " and " * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.authors} { author empty$ { "" } { author format.names } if$ } FUNCTION {format.editors} { editor empty$ { "" } { editor format.names editor num.names$ #1 > { ", editors" * } { ", editor" * } if$ } if$ } FUNCTION {format.title} { title empty$ { "" } { title "t" change.case$ } if$ } FUNCTION {format.eprint} { eprint empty$ { "" } { eprint } if$ } FUNCTION {n.dashify} { 't := "" { t empty$ not } { t #1 #1 substring$ "-" = { t #1 #2 substring$ "--" = not { "--" * t #2 global.max$ substring$ 't := } { { t #1 #1 substring$ "-" = } { "-" * t #2 global.max$ substring$ 't := } while$ } if$ } { t #1 #1 substring$ * t #2 global.max$ substring$ 't := } if$ } while$ } FUNCTION {format.date} { year empty$ { month empty$ { "" } { "there's a month but no year in " cite$ * warning$ month } if$ } { month empty$ 'year { month " " * year * } if$ } if$ } FUNCTION {format.btitle} { title emphasize } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.bvolume} { volume empty$ { "" } { "volume" volume tie.or.space.connect series empty$ 'skip$ { " of " * series emphasize * } if$ "volume and number" number either.or.check } if$ } FUNCTION {format.number.series} { volume empty$ { number empty$ { series field.or.null } { output.state mid.sentence = { "number" } { "Number" } if$ number tie.or.space.connect series empty$ { "there's a number but no series in " cite$ * warning$ } { " in " * series * } if$ } if$ } { "" } if$ } FUNCTION {format.edition} { edition empty$ { "" } { output.state mid.sentence = { edition "l" change.case$ " edition" * } { edition "t" change.case$ " edition" * } if$ } if$ } INTEGERS { multiresult } FUNCTION {multi.page.check} { 't := #0 'multiresult := { multiresult not t empty$ not and } { t #1 #1 substring$ duplicate$ "-" = swap$ duplicate$ "," = swap$ "+" = or or { #1 'multiresult := } { t #2 global.max$ substring$ 't := } if$ } while$ multiresult } FUNCTION {format.pages} { pages empty$ { "" } { pages multi.page.check { "pages" pages n.dashify tie.or.space.connect } { "page" pages tie.or.space.connect } if$ } if$ } FUNCTION {format.vol.num.pages} { volume field.or.null number empty$ 'skip$ { "(" number * ")" * * volume empty$ { "there's a number but no volume in " cite$ * warning$ } 'skip$ if$ } if$ pages empty$ 'skip$ { duplicate$ empty$ { pop$ format.pages } { ":" * pages n.dashify * } if$ } if$ } FUNCTION {format.chapter.pages} { chapter empty$ 'format.pages { type empty$ { "chapter" } { type "l" change.case$ } if$ chapter tie.or.space.connect pages empty$ 'skip$ { ", " * format.pages * } if$ } if$ } FUNCTION {format.in.ed.booktitle} { booktitle empty$ { "" } { editor empty$ { "In " booktitle emphasize * } { "In " format.editors * ", " * booktitle emphasize * } if$ } if$ } FUNCTION {empty.misc.check} { author empty$ title empty$ howpublished empty$ month empty$ year empty$ note empty$ and and and and and key empty$ not and { "all relevant fields are empty in " cite$ * warning$ } 'skip$ if$ } FUNCTION {format.thesis.type} { type empty$ 'skip$ { pop$ type "t" change.case$ } if$ } FUNCTION {format.tr.number} { type empty$ { "Technical Report" } 'type if$ number empty$ { "t" change.case$ } { number tie.or.space.connect } if$ } FUNCTION {format.article.crossref} { key empty$ { journal empty$ { "need key or journal for " cite$ * " to crossref " * crossref * warning$ "" } { "In {\em " journal * "\/}" * } if$ } { "In " key * } if$ " \cite{" * crossref * "}" * } FUNCTION {format.crossref.editor} { editor #1 "{vv~}{ll}" format.name$ editor num.names$ duplicate$ #2 > { pop$ " et~al." * } { #2 < 'skip$ { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { " et~al." * } { " and " * editor #2 "{vv~}{ll}" format.name$ * } if$ } if$ } if$ } FUNCTION {format.book.crossref} { volume empty$ { "empty volume in " cite$ * "'s crossref of " * crossref * warning$ "In " } { "Volume" volume tie.or.space.connect " of " * } if$ editor empty$ editor field.or.null author field.or.null = or { key empty$ { series empty$ { "need editor, key, or series for " cite$ * " to crossref " * crossref * warning$ "" * } { "{\em " * series * "\/}" * } if$ } { key * } if$ } { format.crossref.editor * } if$ " \cite{" * crossref * "}" * } FUNCTION {format.incoll.inproc.crossref} { editor empty$ editor field.or.null author field.or.null = or { key empty$ { booktitle empty$ { "need editor, key, or booktitle for " cite$ * " to crossref " * crossref * warning$ "" } { "In {\em " booktitle * "\/}" * } if$ } { "In " key * } if$ } { "In " format.crossref.editor * } if$ " \cite{" * crossref * "}" * } FUNCTION {article} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block crossref missing$ { journal emphasize "journal" output.check format.vol.num.pages output format.date "year" output.check } { format.article.crossref output.nonnull format.pages output } if$ format.eprint output new.block note output fin.entry } FUNCTION {book} { output.bibitem author empty$ { format.editors "author and editor" output.check } { format.authors output.nonnull crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ new.block format.btitle "title" output.check crossref missing$ { format.bvolume output new.block format.number.series output new.sentence publisher "publisher" output.check address output } { new.block format.book.crossref output.nonnull } if$ format.edition output format.date "year" output.check format.eprint output new.block note output fin.entry } FUNCTION {booklet} { output.bibitem format.authors output new.block format.title "title" output.check howpublished address new.block.checkb howpublished output address output format.date output format.eprint output new.block note output fin.entry } FUNCTION {inbook} { output.bibitem author empty$ { format.editors "author and editor" output.check } { format.authors output.nonnull crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ new.block format.btitle "title" output.check crossref missing$ { format.bvolume output format.chapter.pages "chapter and pages" output.check new.block format.number.series output new.sentence publisher "publisher" output.check address output } { format.chapter.pages "chapter and pages" output.check new.block format.book.crossref output.nonnull } if$ format.edition output format.date "year" output.check format.eprint output new.block note output fin.entry } FUNCTION {incollection} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block crossref missing$ { format.in.ed.booktitle "booktitle" output.check format.bvolume output format.number.series output format.chapter.pages output new.sentence publisher "publisher" output.check address output format.edition output format.date "year" output.check } { format.incoll.inproc.crossref output.nonnull format.chapter.pages output } if$ format.eprint output new.block note output fin.entry } FUNCTION {inproceedings} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block crossref missing$ { format.in.ed.booktitle "booktitle" output.check format.bvolume output format.number.series output format.pages output address empty$ { organization publisher new.sentence.checkb organization output publisher output format.date "year" output.check } { address output.nonnull format.date "year" output.check new.sentence organization output publisher output } if$ } { format.incoll.inproc.crossref output.nonnull format.pages output } if$ format.eprint output new.block note output fin.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { output.bibitem author empty$ { organization empty$ 'skip$ { organization output.nonnull address output } if$ } { format.authors output.nonnull } if$ new.block format.btitle "title" output.check author empty$ { organization empty$ { address new.block.checka address output } 'skip$ if$ } { organization address new.block.checkb organization output address output } if$ format.edition output format.date output format.eprint output new.block note output fin.entry } FUNCTION {mastersthesis} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block "Master's thesis" format.thesis.type output.nonnull school "school" output.check address output format.date "year" output.check format.eprint output new.block note output fin.entry } FUNCTION {misc} { output.bibitem format.authors output title howpublished new.block.checkb format.title output howpublished new.block.checka howpublished output format.date output format.eprint output new.block note output fin.entry empty.misc.check } FUNCTION {phdthesis} { output.bibitem format.authors "author" output.check new.block format.btitle "title" output.check new.block "PhD thesis" format.thesis.type output.nonnull school "school" output.check address output format.date "year" output.check format.eprint output new.block note output fin.entry } FUNCTION {proceedings} { output.bibitem editor empty$ { organization output } { format.editors output.nonnull } if$ new.block format.btitle "title" output.check format.bvolume output format.number.series output address empty$ { editor empty$ { publisher new.sentence.checka } { organization publisher new.sentence.checkb organization output } if$ publisher output format.date "year" output.check } { address output.nonnull format.date "year" output.check new.sentence editor empty$ 'skip$ { organization output } if$ publisher output } if$ format.eprint output new.block note output fin.entry } FUNCTION {techreport} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block format.tr.number output.nonnull institution "institution" output.check address output format.date "year" output.check format.eprint output new.block note output fin.entry } FUNCTION {unpublished} { output.bibitem format.authors "author" output.check new.block format.title "title" output.check new.block note "note" output.check format.date output format.eprint output fin.entry } FUNCTION {default.type} { misc } MACRO {jan} {"January"} MACRO {feb} {"February"} MACRO {mar} {"March"} MACRO {apr} {"April"} MACRO {may} {"May"} MACRO {jun} {"June"} MACRO {jul} {"July"} MACRO {aug} {"August"} MACRO {sep} {"September"} MACRO {oct} {"October"} MACRO {nov} {"November"} MACRO {dec} {"December"} MACRO {acmcs} {"ACM Computing Surveys"} MACRO {acta} {"Acta Informatica"} MACRO {cacm} {"Communications of the ACM"} MACRO {ibmjrd} {"IBM Journal of Research and Development"} MACRO {ibmsj} {"IBM Systems Journal"} MACRO {ieeese} {"IEEE Transactions on Software Engineering"} MACRO {ieeetc} {"IEEE Transactions on Computers"} MACRO {ieeetcad} {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"} MACRO {ipl} {"Information Processing Letters"} MACRO {jacm} {"Journal of the ACM"} MACRO {jcss} {"Journal of Computer and System Sciences"} MACRO {scp} {"Science of Computer Programming"} MACRO {sicomp} {"SIAM Journal on Computing"} MACRO {tocs} {"ACM Transactions on Computer Systems"} MACRO {tods} {"ACM Transactions on Database Systems"} MACRO {tog} {"ACM Transactions on Graphics"} MACRO {toms} {"ACM Transactions on Mathematical Software"} MACRO {toois} {"ACM Transactions on Office Information Systems"} MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"} MACRO {tcs} {"Theoretical Computer Science"} READ FUNCTION {sortify} { purify$ "l" change.case$ } INTEGERS { len } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { nameptr #1 > { " " * } 'skip$ if$ s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't := nameptr numnames = t "others" = and { "et al" * } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ "" } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ "" } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {author.organization.sort} { author empty$ { organization empty$ { key empty$ { "to sort, need author, organization, or key in " cite$ * warning$ "" } { key sortify } if$ } { "The " #4 organization chop.word sortify } if$ } { author sort.format.names } if$ } FUNCTION {editor.organization.sort} { editor empty$ { organization empty$ { key empty$ { "to sort, need editor, organization, or key in " cite$ * warning$ "" } { key sortify } if$ } { "The " #4 organization chop.word sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort} { type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.organization.sort { type$ "manual" = 'author.organization.sort 'author.sort if$ } if$ } if$ " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } ITERATE {presort} SORT STRINGS { longest.label } INTEGERS { number.label longest.label.width } FUNCTION {initialize.longest.label} { "" 'longest.label := #1 'number.label := #0 'longest.label.width := } FUNCTION {longest.label.pass} { number.label int.to.str$ 'label := number.label #1 + 'number.label := label width$ longest.label.width > { label 'longest.label := label width$ 'longest.label.width := } 'skip$ if$ } EXECUTE {initialize.longest.label} ITERATE {longest.label.pass} FUNCTION {begin.bib} { preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\begin{thebibliography}{" longest.label * "}" * write$ newline$ } EXECUTE {begin.bib} EXECUTE {init.state.consts} ITERATE {call.type$} FUNCTION {end.bib} { newline$ "\end{thebibliography}" write$ newline$ } EXECUTE {end.bib} gfan0.7/doc/nonconst.eps0000644000175000017500000001255114656430617014667 0ustar andersanders%!PS-Adobe-2.0 EPSF-2.0 %%Title: nonconst.fig %%Creator: fig2dev Version 3.2 Patchlevel 4 %%CreationDate: Wed Sep 19 18:47:30 2007 %%For: anders@alice (Anders Nedergaard Jensen) %%BoundingBox: 0 0 173 173 %%Magnification: 1.0000 %%EndComments /$F2psDict 200 dict def $F2psDict begin $F2psDict /mtrx matrix put /col-1 {0 setgray} bind def /col0 {0.000 0.000 0.000 srgb} bind def /col1 {0.000 0.000 1.000 srgb} bind def /col2 {0.000 1.000 0.000 srgb} bind def /col3 {0.000 1.000 1.000 srgb} bind def /col4 {1.000 0.000 0.000 srgb} bind def /col5 {1.000 0.000 1.000 srgb} bind def /col6 {1.000 1.000 0.000 srgb} bind def /col7 {1.000 1.000 1.000 srgb} bind def /col8 {0.000 0.000 0.560 srgb} bind def /col9 {0.000 0.000 0.690 srgb} bind def /col10 {0.000 0.000 0.820 srgb} bind def /col11 {0.530 0.810 1.000 srgb} bind def /col12 {0.000 0.560 0.000 srgb} bind def /col13 {0.000 0.690 0.000 srgb} bind def /col14 {0.000 0.820 0.000 srgb} bind def /col15 {0.000 0.560 0.560 srgb} bind def /col16 {0.000 0.690 0.690 srgb} bind def /col17 {0.000 0.820 0.820 srgb} bind def /col18 {0.560 0.000 0.000 srgb} bind def /col19 {0.690 0.000 0.000 srgb} bind def /col20 {0.820 0.000 0.000 srgb} bind def /col21 {0.560 0.000 0.560 srgb} bind def /col22 {0.690 0.000 0.690 srgb} bind def /col23 {0.820 0.000 0.820 srgb} bind def /col24 {0.500 0.190 0.000 srgb} bind def /col25 {0.630 0.250 0.000 srgb} bind def /col26 {0.750 0.380 0.000 srgb} bind def /col27 {1.000 0.500 0.500 srgb} bind def /col28 {1.000 0.630 0.630 srgb} bind def /col29 {1.000 0.750 0.750 srgb} bind def /col30 {1.000 0.880 0.880 srgb} bind def /col31 {1.000 0.840 0.000 srgb} bind def end save newpath 0 173 moveto 0 0 lineto 173 0 lineto 173 173 lineto closepath clip newpath -179.3 414.7 translate 1 -1 scale /cp {closepath} bind def /ef {eofill} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth} bind def /tr {translate} bind def /tnt {dup dup currentrgbcolor 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} bind def /shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul 4 -2 roll mul srgb} bind def /DrawEllipse { /endangle exch def /startangle exch def /yrad exch def /xrad exch def /y exch def /x exch def /savematrix mtrx currentmatrix def x y tr xrad yrad sc 0 0 1 startangle endangle arc closepath savematrix setmatrix } def /$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def /$F2psEnd {$F2psEnteredState restore end} def $F2psBegin 10 setmiterlimit 0 slj 0 slc 0.06000 0.06000 sc % % Fig objects follow % % % here starts figure with depth 50 % Ellipse 7.500 slw n 4500 5100 32 32 0 360 DrawEllipse gs 0.00 setgray ef gr gs col0 s gr % Ellipse n 4800 5400 32 32 0 360 DrawEllipse gs 0.00 setgray ef gr gs col0 s gr % Ellipse n 4500 5400 32 32 0 360 DrawEllipse gs 0.00 setgray ef gr gs col0 s gr % Ellipse n 3600 6300 32 32 0 360 DrawEllipse gs 0.00 setgray ef gr gs col0 s gr % Polyline gs clippath 4230 4185 m 4170 4185 l 4170 4370 l 4200 4220 l 4230 4370 l cp eoclip n 4200 5700 m 4200 4200 l gs col0 s gr gr % arrowhead n 4230 4370 m 4200 4220 l 4170 4370 l 4200 4340 l 4230 4370 l cp gs 0.00 setgray ef gr col0 s % Polyline gs clippath 5715 5730 m 5715 5670 l 5530 5670 l 5680 5700 l 5530 5730 l cp eoclip n 4200 5700 m 5700 5700 l gs col0 s gr gr % arrowhead n 5530 5730 m 5680 5700 l 5530 5670 l 5560 5700 l 5530 5730 l cp gs 0.00 setgray ef gr col0 s % Polyline gs clippath 5731 4210 m 5689 4168 l 5558 4298 l 5686 4214 l 5601 4341 l cp eoclip n 5250 4650 m 5700 4200 l gs col0 s gr gr % arrowhead n 5601 4341 m 5686 4214 l 5558 4298 l 5601 4298 l 5601 4341 l cp gs 0.00 setgray ef gr col0 s % Polyline n 5550 4050 m 4500 5100 l 4500 5400 l 4800 5400 l 5850 4350 l gs col0 s gr % Polyline n 4800 5400 m 4800 6900 l gs col0 s gr % Polyline n 3600 6300 m 3000 6300 l gs col0 s gr % Polyline n 4500 5100 m 3000 5100 l gs col0 s gr % Polyline n 4500 5400 m 3600 6300 l 3600 6900 l gs col0 s gr % Polyline gs clippath 2985 5820 m 2985 5880 l 3170 5880 l 3020 5850 l 3170 5820 l cp eoclip n 3600 5850 m 3000 5850 l gs col0 s gr gr % arrowhead n 3170 5820 m 3020 5850 l 3170 5880 l 3140 5850 l 3170 5820 l cp gs 0.00 setgray ef gr col0 s % Polyline gs clippath 4020 6915 m 4080 6915 l 4080 6730 l 4050 6880 l 4020 6730 l cp eoclip n 4050 6300 m 4050 6900 l gs col0 s gr gr % arrowhead n 4020 6730 m 4050 6880 l 4080 6730 l 4050 6760 l 4020 6730 l cp gs 0.00 setgray ef gr col0 s /Times-Roman ff 180.00 scf sf 3642 6486 m gs 1 -1 sc (4) col0 sh gr /Times-Roman ff 180.00 scf sf 5465 4599 m gs 1 -1 sc (2) col0 sh gr /Times-Roman ff 180.00 scf sf 4346 5066 m gs 1 -1 sc (6) col0 sh gr /Times-Roman ff 180.00 scf sf 4339 5465 m gs 1 -1 sc (3) col0 sh gr /Times-Roman ff 180.00 scf sf 4859 5466 m gs 1 -1 sc (1) col0 sh gr /Times-Roman ff 180.00 scf sf 4086 6625 m gs 1 -1 sc (5) col0 sh gr /Times-Roman ff 180.00 scf sf 3301 5823 m gs 1 -1 sc (0) col0 sh gr % here ends figure; $F2psEnd rs showpage gfan0.7/doc/manual.bbl0000644000175000017500000001126114656430617014250 0ustar andersanders\def\cprime{$'$} \begin{thebibliography}{10} \bibitem{4ti2} 4ti2 team. \newblock 4ti2---a software package for algebraic, geometric and combinatorial problems on linear spaces. \newblock {A}vailable at www.4ti2.de. \bibitem{allermannRau} Lars Allermann and Johannes Rau. \newblock First steps in tropical intersection theory. \newblock {\em Mathematische Zeitschrift}, 2009. \bibitem{avis} David Avis and Komei Fukuda. \newblock A basis enumeration algorithm for convex hulls and vertex enumeration of arrangements and polyhedra. \newblock {\em Discrete Computational Geometry}, 8:295--313, 1992. \bibitem{bg} Robert Bieri and J.~R.~J. Groves. \newblock The geometry of the set of characters induced by valuations. \newblock {\em J. Reine Angew. Math.}, 347:168--195, 1984. \bibitem{ctv} T.~Bogart, A.~N. Jensen, D.~Speyer, B.~Sturmfels, and R.~R. Thomas. \newblock Computing tropical varieties. \newblock {\em J. Symbolic Comput.}, 42(1-2):54--73, 2007, math.AG/0507563. \bibitem{Buch} Bruno Buchberger. \newblock An algorithm for finding a basis for the residue class ring of a zero-dimensional polynomial ideal, 1965. \newblock PhD-thesis (German). \bibitem{collart} S.~Collart, M.~Kalkbrener, and D.~Mall. \newblock Converting bases with the {G}r\"obner walk. \newblock {\em J. Symbolic Comput.}, 24(3-4):465--469, 1997. \newblock Computational algebra and number theory (London, 1993). \bibitem{cdd} Komei Fukuda. \newblock {\em cddlib reference manual, cddlib Version 094b}. \newblock ~Swiss Federal Institute of Technology, Lausanne and Z{\"u}rich, Switzerland, 2005. \newblock \url{http://www.ifor.math.ethz.ch/~fukuda/cdd_home/cdd.html}. \bibitem{fukuda} Komei Fukuda, Anders Jensen, and Rekha Thomas. \newblock Computing {G}r{\"o}bner fans. \newblock {\em Mathematics of Computation, to appear}, 2007, math.AC/0509544. \bibitem{polymake} Ewgenij Gawrilow and Michael Joswig. \newblock polymake: a framework for analyzing convex polytopes. \newblock In Gil Kalai and G\"unter~M. Ziegler, editors, {\em Polytopes --- Combinatorics and Computation}, pages 43--74. Birkh\"auser, 2000. \bibitem{gmp} Torbj{\"o}rn {Granlund et al.} \newblock {GNU} multiple precision arithmetic library 4.1.2, December 2002. \newblock \url{http://swox.com/gmp/}. \bibitem{huber} Birkett Huber and Rekha~R. Thomas. \newblock Computing {G}r{\"o}bner fans of toric ideals. \newblock {\em Experimental Mathematics}, 9(3/4):321--331, 2000. \bibitem{cats} Anders Jensen. \newblock {CaTS}, a software system for toric state polytopes. \newblock Available at {http://www.soopadoopa.dk/anders/cats/cats.html}. \bibitem{symmetricfans} Anders~N. Jensen. \newblock Traversing symmetric polyhedral fans. \newblock to appear in ``Mathe\-matical Software - ICMS 2010'', 2010. \bibitem{thesis} Anders~Nedergaard Jensen. \newblock {\em Algorithmic aspects of {G}r\"obner fans and tropical varieties}. \newblock PhD thesis, University of Aarhus, 2007. \newblock \url{http://www.imf.au.dk/publs?id=655}. \bibitem{jensen} Anders~Nedergaard Jensen. \newblock A non-regular {G}r\"obner fan. \newblock {\em Discrete Comput. Geom.}, 37(3):443--453, 2007, math.CO/0501352. \bibitem{tropicalbook} D.~Maclagan and B.~Sturmfels. \newblock {\em Introduction to Tropical Geometry:}. \newblock Graduate Studies in Mathematics. American Mathematical Society, 2015. \bibitem{lifting} Hannah Markwig, Thomas Markwig, and Anders Jensen. \newblock An algorithm for lifting points in a tropical variety. \newblock 2007, math.AG/0705.2441. \bibitem{MoRo} Teo Mora and Lorenzo Robbiano. \newblock The {G}r\"obner fan of an ideal. \newblock {\em J. Symbolic Comput.}, 6(2-3):183--208, 1988. \newblock Computational aspects of commutative algebra. \bibitem{rambau} J{\"o}rg Rambau. \newblock {TOPCOM}: Triangulations of point configurations and oriented matroids. \newblock {\em ZIB report}, 02-17, 2002. \bibitem{tropgrass} David Speyer and Bernd Sturmfels. \newblock The tropical {G}rassmannian. \newblock {\em Adv. Geom.}, 4(3):389--411, 2004, math.AG/0304218. \bibitem{sturmfels} Bernd Sturmfels. \newblock {\em Gr\"obner bases and convex polytopes}, volume~8 of {\em University Lecture Series}. \newblock American Mathematical Society, Providence, RI, 1996. \bibitem{sturmfelssolving} Bernd Sturmfels. \newblock {\em Solving systems of polynomial equations}, volume~97 of {\em CBMS Regional Conference Series in Mathematics}. \newblock Published for the Conference Board of the Mathematical Sciences, Washington, DC, 2002. \bibitem{wunderling} Roland Wunderling. \newblock {\em Paralleler und objektorientierter {S}implex-{A}lgorithmus}. \newblock PhD thesis, Technische Universit{\"a}t Berlin, 1996. \newblock \url{http://www.zib.de/Publications/abstracts/TR-96-09/}. \end{thebibliography} gfan0.7/doc/tropical.tex0000644000175000017500000007473014656430617014663 0ustar andersanders\newpage \section{Doing tropical computations} \label{sec:tropical} \emph{This section follows the max convention for tropical arithmetic. For the non-constant coefficient case tropical varieties are defined as in \cite{lifting} and \cite{thesis}.} \vspace{0.5cm} In this section we explain how to use Gfan to do tropical computations. For a fixed ideal $I\subseteq k[x_1,\dots,x_n]$ the set of all faces of all full-dimensional Gr\"obner cones is a polyhedral complex which we call the Gr\"obner fan of $I$. For tropical computations the lower dimensional cones of the complex will be of our interest. In general every Gr\"obner cone is of the form: $$C_\omega(I):=\overline{\{\omega'\in\R^n:\init_{\omega'}(I)=\init_\omega(I)\} }.$$ We define the tropical variety $\T(I)$ of an ideal $I$ to be the the set of all $\omega$ such that $\init_\omega(I)$ does not contain a monomial. If the ideal $I$ is homogeneous with respect to a positive grading, then the Gr\"obner cones cover all of $\R^n$ and $\T(I)$ is a union of Gr\"obner cones. Thus for a homogeneous ideal the tropical variety gets the structure of a polyhedral fan which it inherits from the Gr\"obner fan. %collection of all Gr\"obner cones with monomial-free initial %ideals. We therefore also define the tropical variety $\T(I)$ to be the collection of all Gr\"obner cones $C_\omega(I)$ such that $\init_\omega(I)$ is monomial-free. We start by noticing that for computational purposes it is no restriction to only consider the case of a homogeneous ideal: \begin{lemma}\cite[Lemma~6.2.5]{thesis} \label{lem:tropical by homogenisation} Let $I\subseteq k[x_1,\dots,x_n]$ be an ideal generated by $f_1,\dots,f_m\in k[x_1,\dots,x_n]$. Let $J=\langle f_1^h,\dots,f_m^h\rangle\subseteq k[x_0,\dots,x_n]$. Then $\init_\omega(I)$ is monomial-free if and only if $\init_{(0,\omega)}(J)$ is monomial-free where $\omega\in\R^n$. In particular we have the following identity of sets in $\R^{n+1}$: $$\{0\}\times\T(I)=\T(J)\cap(\{0\}\times\R^n).$$ \end{lemma} Here $f^h$ denotes the homogenization of the polynomial $f$. The homogenization of a list of polynomials can be computed by the program \texttt{gfan\_homogenize}. Notice that the lemma only requires the generators to be homogenized as a set of polynomials and not in the sense of a polynomial ideal. The tropical algorithms implemented in Gfan are explained in \cite{ctv}. % The reference also %contains definitions and theorems needed for understanding this %section of the manual. Notice that Gfan follows the usual conventions for signs of weight vectors defining initial forms while \cite{ctv} uses opposite signs. This means that \name is compatible with the max-plus convention whereas \cite{ctv} is compatible with the min-plus convention. \subsection{Tropical variety by brute force} The command \texttt{gfan\_tropicalbruteforce} will compute all Gr\"obner cones of a homogeneous ideal and for each check if its initial ideal contains a monomial. The output is the tropical variety of the ideal. Since the tropical variety is usually much smaller than the Gr\"obner fan this is a rather slow method for computing the tropical variety. The line \begin{verbatim} gfan_buchberger | gfan_tropicalbruteforce \end{verbatim} run on the input \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j] { bf-ah-ce, bg-ai-de, cg-aj-df, ci-bj-dh, fi-ej-gh } \end{verbatim} produces a tropical variety of the input ideal in a few minutes as a polyhedral fan, see Section~\ref{format:fan}. We use \texttt{gfan\_buchberger} since \texttt{gfan\_tropicalbruteforce} requires its input to be a marked reduced Gr\"obner basis. \begin{remark} Notice that if $k'\supseteq k$ is a field extension and $I\subseteq k[x_1,\dots,x_n]$ an ideal then $\T(I)=\T(\langle I\rangle_{k'[x_1,\dots,x_n]})$ as a polyhedral fan. This identity follows since both objects can be computed by Gr\"obner basis methods and Gr\"obner bases are independent of such field extensions. The same argument of course also applies to the Gr\"obner fans of the two ideals. \end{remark} \subsection{Traversing tropical varieties of prime ideals} Let $I\subseteq \CC[x_1,\dots,x_n]$ be a homogeneous monomial-free prime ideal of dimension $d$. By the Bieri Groves Theorem \cite{bg} the tropical variety of $I$ is a pure $d$-dimensional polyhedral fan. It is connected in codimension one (\cite[Theorem~14]{ctv}) and can be traversed by Gfan. Let $\omega$ be a relative interior point of a $d$-dimensional Gr\"obner cone in the tropical variety of $I$. Fix some term order $\prec$. Gfan represents $C_\omega(I)$ by the pair of marked reduced Gr\"obner bases $(\G_{\prec_\omega}(\init_\omega(I)),\G_{\prec_\omega}(I))$. To compute the tropical variety of an ideal we must begin by finding a starting $d$-dimensional Gr\"obner cone. For this \texttt{gfan\_tropicalstartingcone} is used. % This programs guesses a %starting cone by heuristic methods. The guessing might fail. In that %case the program will terminate with an error message. After having computed a starting cone we use the program \texttt{gfan\_tropicaltraverse} to traverse the tropical variety. %There are several options for the output. In general the choice of output we request can have a huge influence on the running time for the program. We illustrate the procedure with an example. \begin{remark} Gfan does its computations over $\Q$ and thus the input should be an ideal generated by polynomials in $\Q[x_1,\dots,x_n]$. The assumption that $I$ is an ideal in $\CC[x_1,\dots,x_n]$ is needed since by ``prime ideal'' in the above we mean ``prime ideal in the polynomial ring over the algebraically closed field $\CC$''. If $I$ is a prime ideal in $\Q[x_1,\dots,x_n]$ we do not know that its tropical variety is connected. In Section~\ref{sec:non-constant} we address the problem of specifying non-rational coefficients. \end{remark} \begin{example} Let $I\subseteq\Q[a,\dots,o]$ be the ideal generated by the relations on the 2 by 2 minors of a 2 by 6 generic matrix. In $\CC[x_1,\dots,x_n]$ the ideal $I$ generates a prime ideal. To get a starting cone for the traversal of $\T(I)$ we run the command \begin{verbatim} gfan_tropicalstartingcone \end{verbatim} on the input \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o] { bg-aj-cf, bh-ak-df, bi-al-ef, ck-bm-dj, ch-am-dg, cl-ej-bn, ci-eg-an, dn-co-em, dl-bo-ek, di-ao-eh, gk-fm-jh, gl-fn-ij, hl-fo-ik, kn-jo-lm, hn-im-go } \end{verbatim} and get a pair of marked reduced Gr\"obner bases \begin{verbatim} Q[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o] { l*m+j*o, i*m+g*o, i*k-h*l, i*j-g*l, h*j-g*k, e*m+c*o, e*k+b*o, e*j-c*l, e*h+a*o, e*g-c*i, c*k-b*m, c*h-a*m, b*i-a*l, b*h-a*k, b*g-a*j} { l*m-k*n+j*o, i*m-h*n+g*o, i*k-h*l+f*o, i*j-g*l+f*n, h*j-g*k+f*m, e*m-d*n+c*o, e*k-d*l+b*o, e*j-c*l+b*n, e*h-d*i+a*o, e*g-c*i+a*n, c*k-d*j-b*m, c*h-d*g-a*m, b*i-e*f-a*l, b*h-d*f-a*k, b*g-c*f-a*j} \end{verbatim} This takes about a second. We store the output in the file \texttt{grassmann2\_6.cone} for later use. Since $I$ has many symmetries we add the following lines describing the symmetry group to the end of the file: \begin{verbatim} { (0,8,7,6,5,4,3,2,1,14,13,11,12,10,9), (5,6,7,8,0,9,10,11,1,12,13,2,14,3,4) } \end{verbatim} We are ready to traverse $\T(I)$. % We start by running the program with the simplest possible output and using symmetries: We run the following command \begin{verbatim} gfan_tropicaltraverse --symmetry tmpfile1.poly Q[x_1,x_2,x_3] {x_2x_3+x_1x_3+x_1x_2+x_1x_2x_3} \end{verbatim} The weights/multiplicities are stored in the MULTIPLICITIES section of the Polymake file. It is harder specifying the rational function. We make the following file and call in \texttt{func.poly}. \begin{footnotesize} \begin{verbatim} _application PolyhedralFan _version 2.2 _type PolyhedralFan AMBIENT_DIM 3 DIM 2 LINEALITY_DIM 0 RAYS 1 0 0 # 0 0 1 0 # 1 0 0 1 # 2 -1 -1 -1 # 3 1 1 0 # 4 -1 -1 0 # 5 N_RAYS 6 LINEALITY_SPACE ORTH_LINEALITY_SPACE 1 0 0 0 1 0 0 0 1 MAXIMAL_CONES {3 5} # Dimension 2 {5 2} {0 2} {1 2} {1 3} {0 3} {1 4} {0 4} MULTIPLICITIES 1 1 1 1 1 1 1 1 RAY_VALUES 0 0 0 1 -1 0 LINEALITY_VALUES \end{verbatim} \end{footnotesize} Instead of specifying the linear function on each maximal cone we have to specify its values on each of the rays in the fan and each of the generators of the lineality space. Then Gfan will automatically interpolate the function. Since the lineality space of the fan is empty we leave the LINEALITY\_VALUES section empty. We now compute the Weil divisor: \begin{footnotesize} \begin{verbatim} gfan_tropicalweildivisor -i1 tmpfile1.poly -i2 func.poly >tmpfile2.poly \end{verbatim} \end{footnotesize} ...and compute the Weil divisor again as in \cite{allermannRau}... \begin{footnotesize} \begin{verbatim} gfan_tropicalweildivisor -i1 tmpfile2.poly -i2 func.poly >tmpfile3.poly \end{verbatim} \end{footnotesize} We get a fan with the origin being the only cone. It has multiplicity $-1$: \begin{verbatim} MULTIPLICITIES -1 # Dimension 0 \end{verbatim} There is another useful command for computing polyhedral fans for rational functions. The command \texttt{gfan\_tropicalfunction} takes a polynomial and turns it into a fan representing its tropicalization which is a tropical rational function. \subsection{Non-constant coefficients (partially deprecated)} \label{sec:non-constant} {\bf The easiest way to compute tropical prevarieties is by using the command {\texttt gfan\_tropicalprevariety} introduced in gfan0.7. See Section~\ref{subsec:tropicalprevariety}. The current section is kept for compatibility reasons.} In tropical geometry it is common to take the valuation of $\CC\{\{t\}\}$ into account when defining the tropical variety of an ideal in $\CC\{\{t\}\}[x_1,\dots,x_n]$. Here $\CC\{\{t\}\}$ denotes the field of Puiseux series. The valuation $\textup{val}(p)$ of a non-zero Puiseux series $p$ is the degree of its lowest order term. \begin{definition} \label{def:tomegadegree} For $\omega\in\R^n$ the \emph{t-$\omega$-degree}\index{t-$\omega$-degree} of a term $ct^ax^v$ with $c\in\CC^*$, $a\in \Q$ and $v\in\Z^n$ is defined as $-\val(ct^a)+\omega\cdot v=-a+\omega\cdot v$. The \emph{t-initial form}\index{t-initial form} $\tinit_\omega(f)\in\CC[x_1,\dots,x_n]$ of a polynomial $f\in\puiseux[x_1,\dots,x_n]$ is the sum of all terms in $f$ of maximal t-$\omega$-weight but with $1$ substituted for $t$. \end{definition} \begin{remark} Notice that since $t$ has t-$\omega$-degree $-1$, the maximal t-$\omega$-weight \emph{is} attained by a term if the polynomial is non-zero. Furthermore, only a finite number of terms attain the maximum. Therefore, it makes sense to substitute $t=1$ and consider the finite sum of terms as a polynomial in $\CC[x_1,\dots,x_n]$. \end{remark} \begin{example} Consider $f=(1+t)+t^2x+tx^2\in\puiseux[x_1,\dots,x_n]$. Let $\omega=({1\over 2})\in\R^1$. Then $\tinit_\omega(f)=1+x^2$. For any other choice of $\omega$ the t-initial form is a monomial. \end{example} \begin{definition} Let $I\subseteq \puiseux[x_1,\dots,x_n]$ and $\omega\in\R^n$. The \emph{t-initial ideal}\index{t-initial ideal} of $I$ with respect to $\omega$ is defined as: $$\tinit_\omega(I):=\langle \tinit_\omega(f):f\in I\rangle\subseteq\CC[x_1,\dots,x_n].$$ \end{definition} \begin{definition} \label{def:tropvar} Let $I\subseteq \puiseux[x_1,\dots,x_n]$ be an ideal. The \emph{tropical variety} of $I$ is the set $$\T'(I):=\{\omega\in\R^n:\tinit_\omega(I) \textup{ is monomial-free}\}.$$ %Here monomial-free\index{monomial-free} means that the ideal does not contain a monomial. \end{definition} We use the notation $\T'(I)$ to avoid contradicting our original definition of the tropical variety of an ideal in the polynomial ring over a field. %An important theorem says that the tropical variety of $I$ is also the %negative of the closure of the image of $V(I)\subseteq \CC\{\{t\}\}^*$ %under the coordinatewise valuation. \begin{proposition} \cite[Proposition~7.3]{lifting} \label{prop:computing tinit} Let $I\subseteq \CC[t,x_1,\dots,x_n]$ be an ideal, $J=\langle I\rangle_{\puiseux[x_1,\dots,x_n]}$ and $\omega\in\R^n$. Then $\textup{t-in}_\omega(I)=\textup{t-in}_\omega(J)$. \end{proposition} \begin{remark} \label{rem:computing tinit} For $f\in\CC[t,x_1,\dots,x_n]$ we have $\tinit_\omega(f)=(\init_{(-1,\omega)}(f))|_{t=1}$. Consequently, for $I\subseteq\CC[t,x_1,\dots,x_n]$ we have $\tinit_\omega(I)=(\init_{(-1,\omega)}(I))|_{t=1}$. In order to decide if $\tinit_\omega(I)$ contains a monomial we may simply decide if the initial ideal $\init_{(-1,\omega)}(I)$ contains a monomial. As a corollary we get $$\T(I)\cap(\{-1\}\times\R^n)=\{-1\}\times\T'(J).$$ In fact this gives a method for computing the tropical variety as a set of any ideal $J\subseteq\CC\{\{t\}\}[x_1,\dots,x_n]$ generated by elements in the polynomial ring over the field of rational functions $\Q(t)[x_1,\dots,x_n]$ in Gfan by clearing denominators and intersecting the result with the $t=-1$ plane. (We remind the reader that Lemma~\ref{lem:tropical by homogenisation} shows that for computational purposes it is no restriction if $I$ is not homogeneous.) \end{remark} Intersecting the tropical variety with the $t=-1$ plane can with some difficulty be done by hand. If the tropical (pre)-variety has been computed with \texttt{gfan\_tropicalintersection} then it is also possible to let Gfan do the intersection. What Gfan does is to compute the common refinement of the fan with the fan consisting of the halfspace $t\leq 0$ and its proper face. Of course this does not remove the cones in the $t=0$ plane, but they are easily removed by hand. We illustrate the procedure by an example. \begin{example} \label{ex:nonconstant} Exercise 2 in Chapter 9 of \cite{sturmfelssolving} asks us to draw the variety defined by the \emph{tropical} polynomial $f=1x^2+2xy+1y^2+3x+3y+1$. If we tropically divide this polynomial by $3$ we get $f':=f/3=-2x^2-1xy-2y^2+0x+0y+-2$ which defines the same tropical variety. This variety equals the variety defined by the polynomial $g=t^2x^2+txy+t^2y^2+x+y+t^2\in\CC\{\{t\}\}[x,y]$. Notice that $f'$ is the tropicalisation of $g$. According to Remark~\ref{rem:computing tinit} above the we may compute $\T'(\langle g\rangle)$ by computing the variety of $\langle t^2x^2+txy+t^2y^2+x+y+t^2\rangle\subseteq \CC[t,x,y]$ and intersecting it with the hyperplane $t=-1$. Running \begin{verbatim} gfan_tropicalintersection --tplane \end{verbatim} on \begin{verbatim} Q[t,x,y] {t^2x^2+txy+t^2y^2+x+y+t^2} \end{verbatim} we get \begin{verbatim} RAYS 0 -1 0 # 0 -1 2 1 # 1 0 1 1 # 2 -1 1 1 # 3 -1 -2 -2 # 4 0 0 -1 # 5 -1 1 2 # 6 MAXIMAL_CONES {3 4} # Dimension 2 {2 6} {1 3} {1 2} {3 6} {4 5} {0 4} {0 6} {1 5} \end{verbatim} among other information. We can now draw the two-dimensional picture asked for in the exercise. The rays with non-zero first coordinate become points in the picture. (If the first coordinate is not $-1$ scaling is required to get the rational $x,y$-coordinates.) The rays with zero first coordinate become directions. The maximal cones show how to connect the rays; see Figure~\ref{fig:nonconstant}. Notice that some of the connections could have been ``at infinity''. \begin{figure} \begin{center} \epsfig{file=nonconst.eps,height=5.5cm} \end{center} \caption{The tropical variety defined by the tropical polynomial in Example~\ref{ex:nonconstant}.} \label{fig:nonconstant} \end{figure} \end{example} \subsubsection{Algebraic field extensions of $\Q$} Ignoring time, memory usage and overflows Gfan can compute the tropical variety $\T'(I)$ of any ideal $I\subseteq \puiseux[x_1,\dots,x_n]$ generated by elements of $\overline{\Q}(t)[x_1,\dots,x_n]$. This is a consequence of the following lemma: \begin{lemma}\cite[Lemma~3.12]{lifting} \label{lem:fieldextension} Let $k$ be a field and $M=\langle m\rangle\subseteq k[a]$ a maximal ideal where $m$ is not a monomial. Let $I\subseteq (k[a]/M)[x_1,\dots,x_n]$ be an ideal. For $\omega\in\R^n$ we have $$\init_\omega(I) \textup{ contains a monomial} \Longleftrightarrow \init_{(0,\omega)}(\varphi^{-1}(I)) \textup{ contains a monomial}$$ where $\varphi:k[a,x_1,\dots,x_n]\rightarrow (k[a]/M)[x_1,\dots,x_n]$ is the homomorphism taking elements to their cosets. \end{lemma} \subsection{Tropical prevarieties} \label{subsec:tropicalprevariety} As explained earlier, a tropical prevariety is defined to be an intersection of finitely many tropical hypersurfaces. Such intersection can be computed by either the old command {gfan\_tropicalintersection} or the new command {gfan\_tropicalprevariety} introduced in \name version 0.7. There are several choices to be made when defining the tropical prevariety of a list of polynomials in $\puiseux[x_1,\dots,x_n]$, for example whether $t$ should have valuation $+1$ or $-1$, whether the value group should be ordered in the positive or negativ direction (and whether gfan should ``cone over'' the complex at $x_0=-1$ or $x_0=1$ to get the fan-like output). However, the most sensible choices are just to have the equation $$T(I)\cap\Q^n=\textup{val}(V(I))$$ satisfied, where $\textup{val}$ is cooridinate-wise valuation. This leaves the choice of thinking of $\puiseux$ as having increasing exponents in $t$ (min) or decreasing exponents in $t$ (max) and taking valuation to be $t$-exponent of the leading term of a series. In addition to these choices, part of the literature mixes max and min conventions to have increasing Puiseux series while following conventions of the (global) Gr\"obner fan theory (using \emph{outer} normals). This is consistent with Definition~\ref{def:tomegadegree}. For these choices the following equation holds: $$T(I)\cap\Q^n=-\textup{val}(V(I)).$$ In the following we illustrate these choices on some examples. Note that the \name parser only understands ordinary polynomials at the moment. So although we can specify the coefficient field to be rational functions in $t$, only polynomial of $\CC(t)[x_1,\dots,x_n]\subset\puiseux[x_1,\dots,x_n]$ that are actually in $\CC[t,x_1,\dots,x_n]$ can be parsed at the moment, leading to some inconvenience. Moreover, specifying for example $p$-adic valuations for ideals in $\Q[x_1,\dots,x_n]$ is not possible at the moment. The command {gfan\_tropicalprevariety} has two options to set max/min conventions: \begin{verbatim} --mint --minx \end{verbatim} \begin{example}[Default: Max, max] The Puiseux series are decreasing in $t$-exponent and $T(I)\cap\Q^n=\textup{val}(V(I))$ is satisfied. This convention is compatible with most of \name, but seems to not be used much in the literature. One place it is used is in the introduction of~\cite{ctv}. In the following note that it would not be possible for \name to parse \texttt{(t4+1)x} while \texttt{t4x+1x} can be parsed. \begin{verbatim} gfan _tropicalprevariety --usevaluation Q(t)[x]{t+t4x+1x+tx3} \end{verbatim} gives as part of the output \begin{verbatim} RAYS 1 -3 # 0 2 3 # 1 \end{verbatim} The tropical prevariety is $\{-3,{3\over 2}\}$. %Here the convention is that Puiseux series are increasing in $t$-exponent. %For example taking $(i+higher order terms,0+higher order terms)$ makes equations vanish in $t$-degree 1, when substituting in. \end{example} \begin{example}[Max convention, increasing t-exponents] We now change to the definition that is compatible both with the Gr\"obner basis convention (outer normals) and increasing t-exponents. This convention was used in~\cite{sturmfelssolving}, \cite{lifting} and~\cite{thesis} and satisfies $T(I)\cap\Q^n=-\textup{val}(V(I))$. \begin{verbatim} gfan _tropicalprevariety --usevaluation --mint Q(t)[x]{t+t4x+1x+tx3} \end{verbatim} gives as part of the output \begin{verbatim} RAYS 1 -1 # 0 2 1 # 1 \end{verbatim} %Here the convention is that Puiseux series are increasing in $t$-exponent. %The rays appear in different order. Notice also the change of sign in the $t$-coordinate. The tropical prevariety is $\{-1,{1\over 2}\}$. \end{example} \begin{example}[Min convention, increasing t-exponents] Our final example illustrates the most common convention, since this is the one used in the tropical book by Maclagan and Sturmfels~\cite{tropicalbook}. It was also used in~\cite{tropgrass}. The convention has the advantage that Puiseux series are increasing in $t$ and the equation $T(I)\cap\Q^n=\textup{val}(V(I))$ is satisfied. \begin{verbatim} gfan _tropicalprevariety --usevaluation --mint --minx Q(t)[x]{t+t4x+1x+tx3} \end{verbatim} gives as part of the output \begin{verbatim} RAYS 1 1 # 0 2 -1 # 1 \end{verbatim} The tropical prevariety is $\{1,-{1\over 2}\}$. \end{example} More interesting examples are obtained by introducing more variables and polynomials, but here we only wished to demonstrate various conventions. To speed up computation the arithmetic can be changed to machine-integer using for example option \texttt{--bits64}. Note that in that case overflow checking is not completely implemented. If \texttt{--usevaluation} is not specified, then the output lives in a space of dimension one lower. If a coefficient field without a default valuation is specified in the input, then the trivial valuation is used. gfan0.7/doc/defines.tex0000600000175000017500000000411114656430617014435 0ustar andersanders\documentclass[12pt,a4paper,dvips,openright]{article} %\usepackage{amsmath, amsthm} \usepackage{theorem} \usepackage[english]{babel} %\usepackage{fontenc} %\usepackage{t1enc} \usepackage{a4} \usepackage{epsfig} \usepackage{amsfonts} \usepackage{latexsym} \usepackage{alltt} \usepackage{url} \usepackage{color} \usepackage[normalem]{ulem} %%\usepackage{html} %%\usepackage{showlabels} \usepackage{hyperref} %\theoremstyle{remark} \newtheorem{theorem}{Theorem}[section] \newtheorem{lemma}[theorem]{Lemma} \newtheorem{proposition}[theorem]{Proposition} \newtheorem{corollary}[theorem]{Corollary} \newtheorem{algorithm}[theorem]{Algorithm} \theorembodyfont{\rmfamily} \newtheorem{definition}[theorem]{Definition} \newtheorem{remark}[theorem]{Remark} \theorembodyfont{\rmfamily} \newtheorem{example}[theorem]{Example} \newenvironment{proof}[1][\it Proof.]{\begin{trivlist}\item[\hskip \labelsep {\bfseries #1}]}{$_\Box$\end{trivlist}} \newcommand{\N}{\ensuremath{\mathbb{N}}} \newcommand{\Z}{\ensuremath{\mathbb{Z}}} \newcommand{\Q}{\ensuremath{\mathbb{Q}}} \newcommand{\R}{\ensuremath{\mathbb{R}}} \newcommand{\A}{\ensuremath{\mathcal{A}}} \newcommand{\F}{\ensuremath{\mathcal{F}}} \newcommand{\G}{\ensuremath{\mathcal{G}}} \newcommand{\T}{\ensuremath{ \mathcal{T} }} \newcommand{\K}{\ensuremath{\mathcal{K}}} \newcommand{\C}{\ensuremath{\mathcal{C}}} \newcommand{\CC}{\ensuremath{\mathbb{C}}} \newcommand{\TT}{\ensuremath{\mathbb{T}}} %\newcommand{\k}{\ensuremath{{k}}} %\newcommand{\t}{\ensuremath{{t}}} \newcommand{\x}{\ensuremath{{x}}} \newcommand{\init}{\textup{in}} \newcommand{\tinit}{\textup{t-in}} \newcommand{\homog}{\textup{homog}} \newcommand{\spann}{\textup{span}} \newcommand{\flip}{\textup{flip}} \newcommand{\face}{\textup{face}} \newcommand{\supp}{\textup{supp}} \newcommand{\val}{\textup{val}} \newcommand{\rank}{\textup{rank}} \newcommand{\conv}{\textup{conv}} \newcommand{\minAss}{\textup{minAss}} \newcommand{\Ass}{\textup{Ass}} \newcommand{\relint}{\textup{rel int}} \newcommand{\New}{\textup{New}} \newcommand{\codim}{\textup{codim}} \newcommand{\puiseux}{{\ensuremath{\CC\{\{t\}\}} }} gfan0.7/src/0000775000175000017500000000000014656430617012335 5ustar andersandersgfan0.7/src/breadthfirstsearch.h0000644000175000017500000000147614656430617016363 0ustar andersanders#ifndef BREADTHFIRSTSEARCH_H_INCLUDED #define BREADTHFIRSTSEARCH_H_INCLUDED #include "enumeration.h" #include "termorder.h" #include "symmetry.h" #include "polyhedralcone.h" PolyhedralCone coneFromMarkedBasis(PolynomialSet const &g); class BreadthFirstSearch: public EnumerationAlgorithm { bool minkowski; int numberOfEdges; int numberOfVertices; const SymmetryGroup &symmetryGroup; IntegerVectorList subspacePerp; /* IntegerVectorList blocks; void markBoundary(IntegerVectorList &blocks, PolynomialSet const &g); IntegerVectorList computeLocalBlocks(PolyhedralCone const &c, bool copy); */ public: BreadthFirstSearch(const SymmetryGroup &symmetryGroup_, bool minkowski_=false); void enumerate(const PolynomialSet &groebnerBasis); void setSubspace(IntegerVectorList const &subspacePerp_); }; #endif gfan0.7/src/app_tropicalmultiplicity.cpp0000644000175000017500000000157614656430617020176 0ustar andersanders#include "parser.h" #include "printer.h" #include "polynomial.h" #include "gfanapplication.h" #include "multiplicity.h" #include "lp.h" #include "saturation.h" #include "log.h" class TropicalMultiplicityApplication : public GFanApplication { public: const char *helpText() { return "This program computes the multiplicity of a tropical cone given a marked reduced Groebner basis for its initial ideal.\n"; } TropicalMultiplicityApplication() { registerOptions(); } const char *name() { return "_tropicalmultiplicity"; } int main() { PolynomialSet g=FileParser(Stdin).parsePolynomialSetWithRing(); log1 AsciiPrinter(Stdout).printPolynomialSet(nonHomogeneousSaturation(g)); AsciiPrinter(Stdout).printInteger(multiplicity(g)); AsciiPrinter(Stdout).printNewLine(); return 0; } }; static TropicalMultiplicityApplication theApplication; gfan0.7/src/tropical.h0000644000175000017500000000100614656430617014316 0ustar andersanders#ifndef TROPICAL_H_INCLUDED #define TROPICAL_H_INCLUDED #include "polynomial.h" //bool isFullColored(IntegerVectorList const &inequalityColors, IntegerVector const &v) PolynomialSetList fullColoredIdeals(PolynomialSet const &g, bool skipColorTest=false); bool containsMonomial(PolynomialSet const &ideal);//ideal must be homogeneous Term computeTermInIdeal(PolynomialSet const &ideal, int m=0);//ideal must be homogeneous PolynomialSet saturatedIdeal(PolynomialSet const &ideal); //ideal must be homogeneous #endif gfan0.7/src/regularsubdivision.h0000644000175000017500000000056514656430617016432 0ustar andersanders#ifndef REGULARSUBDIVISION_H_INCLUDED #define REGULARSUBDIVISION_H_INCLUDED #include #include "matrix.h" #include set > regularSubdivision(IntegerMatrix const &m, IntegerVector const &w); void printSetSetInt(FILE *f, set > const &faces); //PolyhedralCone secondaryCone(IntegerMatrix const &m, set > const &subdivision); #endif gfan0.7/src/wallideal.h0000644000175000017500000001011714656430617014442 0ustar andersanders#ifndef WALLIDEAL_H_INCLUDED #define WALLIDEAL_H_INCLUDED #include "polynomial.h" #include "polyhedralcone.h" /* The correct way to get a set of defining inequalities for a full-dimensional groebner cone is by calling wallInequalities() and possibly algebraicTest(). It is important not to use wallFlipableNormals() since this will not work for non-homogeneous ideals. The algebraicTest() however works fine in the non-homogeneous case. */ IntegerVectorList algebraicTest(IntegerVectorList const &l, PolynomialSet const &groebnerBasis);//run the list through the algebraic test Polynomial wallPolynomial(Polynomial const &p, IntegerVector const &wallNormal); PolynomialSet wallIdeal(PolynomialSet const &groebnerBasis, IntegerVector const &wallNormal); PolynomialSet lowerDimensionalWallIdeal(PolynomialSet const &groebnerBasis, IntegerVectorList const &wallEqualities); //IntegerVectorList wallNormals(PolynomialSet const &groebnerBasis); IntegerVectorList wallRemoveScaledInequalities(IntegerVectorList const &l); /** * This routine takes a list of marked polynomials. For each polynomial it takes the * exponent vector of the marked term and for every other term subtracts the exponent * vector of that term and stores the difference in a set which is output at the end. * Duplicates are removed. */ IntegerVectorList exponentDifferences(PolynomialSet const &g); /** * This routine takes a list g of marked polynomials and computes a list of * strict inequalities that are as set are satisfied for a weight vector w * if and only if w induces the same marking on g. */ IntegerVectorList wallInequalities(PolynomialSet const &g); bool wallContainsPositiveVector(IntegerVector const &wallNormal); PolynomialSet flip(PolynomialSet const &groebnerBasis, IntegerVector const &wallNormal, TermOrder *autoReduceHint=0); PolynomialSet flipMinkowski(PolynomialSet const &groebnerBasis, IntegerVector const &wallNormal); void wallAddCoordinateWalls(IntegerVectorList &normals); IntegerVectorList wallFlipableNormals(PolynomialSet const &groebnerBasis, bool isKnownToBeHomogeneous=false); bool isIdealHomogeneous(PolynomialSet const &groebnerBasis); //wrt a positive vector PolyhedralCone homogeneitySpace(PolynomialSet const &reducedGroebnerBasis); PolyhedralCone groebnerCone(PolynomialSet const &reducedGroebnerBasis, bool useAlgebraicTest); int dimensionOfHomogeneitySpace(PolynomialSet const &reducedGroebnerBasis); PolynomialSet liftBasis(PolynomialSet const &toBeLifted, PolynomialSet const &originalBasisForFullIdeal); IntegerVectorList normalizedWithSumsAndDuplicatesRemoved(IntegerVectorList const &a); bool fastIsFacet(IntegerVectorList const &normals, IntegerVectorList::const_iterator i);//assumes that normals contains no duplicates (or scaled vectors) and that the cone is full-dimensional IntegerVectorList fastNormals(IntegerVectorList const &inequalities);//using the two above routines. Assuming full-dimensionality bool isMarkingConsistent(PolynomialSet const &g); /** This routine takes a set of polynomials (not necessarily marked) and computes the smallest cone in the normal fan of the Minkowski sum of their Newton polytopes containing the vector w. In particular this routine is useful for computing Groebner cones. The returned cone is in canonical form. */ PolyhedralCone normalConeOfMinkowskiSum(PolynomialSet const &polynomials, IntegerVector const &w); /** This routine returns a list of equations cutting out a space. This space is the smallest subspace of gradings for which all polynomials in the parameter set are homogeneous. */ IntegerVectorList commonHomogeneitySpaceEquations(PolynomialSet const &polynomials); /** This routine returns a basis a space. This space is the smallest subspace of gradings for which all polynomials in the parameter set are homogeneous. */ IntegerVectorList commonHomogeneitySpaceGenerators(PolynomialSet const &polynomials); #include "linalg.h" FieldMatrix homogeneitySpaceEquations(Polynomial const &f); FieldMatrix homogeneitySpaceGenerators(Polynomial const &f); FieldMatrix spanOfHomogeneitySpaces(PolynomialSet const &polynomials); #endif gfan0.7/src/app_idealproduct.cpp0000644000175000017500000000207014656430617016355 0ustar andersanders#include "parser.h" #include "printer.h" #include "saturation.h" #include "gfanapplication.h" #include "lp.h" class IdealProductApplication : public GFanApplication { FieldOption theFieldOption; public: bool includeInDefaultInstallation() { return false; } const char *helpText() { return "This program computes the product IJ of ideals generated by sets of polynomials given in the input.\n"; } IdealProductApplication() { registerOptions(); } const char *name() { return "_idealproduct"; } int main() { LpSolver::printList(Stderr); lpSetSolver("cddgmp"); FileParser P(Stdin); PolynomialRing theRing=P.parsePolynomialRing(); PolynomialSet a=P.parsePolynomialSet(theRing); PolynomialSet b=P.parsePolynomialSet(theRing); PolynomialSet ret(theRing); for(PolynomialSet::const_iterator i=a.begin();i!=a.end();i++) for(PolynomialSet::const_iterator j=b.begin();j!=b.end();j++) { ret.push_back(*i * *j); } pout< #include "buchberger.h" #include "groebnerengine.h" #include "tropical.h" #include "tropical2.h" #include "division.h" #include "wallideal.h" #include "halfopencone.h" #include "log.h" #include "timer.h" static Timer iterativeTropicalBasisTimer("Iterative tropical basis",1); typedef set IntegerVectorSet; static Polynomial cleverSaturation(Polynomial const &p, IntegerVector const &w) { PolynomialRing theRing=p.getRing(); if(p.isZero())return p; if(w.size()==0)return p; Polynomial f=initialForm(p,w); debug<<"P:"<getRing().withVariablesAppended("Z"); PolynomialSet sPolynomials(theRing); for(PolynomialSet::const_iterator i=g->begin();i!=g->end();i++) if(!i->isZero())sPolynomials.push_back(cleverSaturation(i->embeddedInto(theRing),w)); // It is safe and useful to ignore the 0 polynomial sPolynomials.push_back(theRing.monomialFromExponentVector(IntegerVector::allOnes(theRing.getNumberOfVariables()))-theRing.one()); sPolynomials.saturate(); sPolynomials.markAndScale(termOrder); *g=PolynomialSet(theRing); while(!sPolynomials.empty()) { Polynomial p=*sPolynomials.begin(); sPolynomials.pop_front(); p=division(p,*g,termOrder); if(!p.isZero()) { p=cleverSaturation(p,w); p.mark(termOrder); p.scaleMarkedCoefficientToOne(); bool isMonomial=p.isMonomial(); for(PolynomialSet::const_iterator i=g->begin();i!=g->end();i++) if((!isMonomial) || (!i->isMonomial())) // 2 % speed up! { if(!relativelyPrime(i->getMarked().m.exponent,p.getMarked().m.exponent)) { Polynomial s=sPolynomial(*i,p); s.mark(termOrder); // with respect to some termorder s.scaleMarkedCoefficientToOne(); sPolynomials.push_back(s); } } g->push_back(p); { static int t; t++; // if((t&31)==0)fprintf(Stderr," gsize %i spolys:%i\n",g->size(),sPolynomials.size()); } } } minimize(g); autoReduce(g,termOrder); } PolynomialSet tropicalBasisOfCurve(int n, PolynomialSet g, PolyhedralFan *intersectionFan, int linealitySpaceDimension) //Assuming g is homogeneous { /* * TODO: Introduce the notion of a tropical prebasis: * * Definition. A set of polynomials f_1,...,f_m is called a tropical prebasis for the ideal they * generate if for every w not in the tropical variety of that ideal there exists a monomial in * the ideal generated by the initial forms of f_1,...,f_m w.r.t. w. * * Computing a tropical prebasis could be faster than computing a tropical basis since fewer * groebner bases for the originial ideal might be needed. Still, however, it is relatively easy * to determine the tropical variety given a tropical prebasis. */ PolynomialSet originalG=g; // bool prebasis=true; // debug<<"PREBASIS="<0 || n==0); TimerScope ts(&iterativeTropicalBasisTimer); PolyhedralFan f(n); if(!intersectionFan)intersectionFan=&f; // *intersectionFan=tropicalPrincipalIntersection(n,g,linealitySpaceDimension); // log1 fprintf(Stderr,"WARINING USING EXPERIMENTAL TROPICAL HYPERSURFACE INTERSECTION ROUTINE!!\n"); *intersectionFan=tropicalHyperSurfaceIntersectionClosed(n, g); IntegerVectorSet containsNoMonomialCache; while(1) { PolyhedralFan::coneIterator i; // {AsciiPrinter P(Stderr);intersectionFan->printWithIndices(&P);} restart: // {AsciiPrinter P(Stderr);intersectionFan->printWithIndices(&P);} for(i=intersectionFan->conesBegin();i!=intersectionFan->conesEnd();i++) { // log1 cerr<<"!@#$"; IntegerVector relativeInteriorPoint=i->getRelativeInteriorPoint(); // log1 cerr<<"1234/n"; if(containsNoMonomialCache.count(relativeInteriorPoint)>0) { log2 fprintf(Stderr,"Weight vector found in cache.... contains no monomial.\n"); } else { /* if(prebasis) { if(containsMonomial(initialForms(g,relativeInteriorPoint))) { intersectionFan->insertFacetsOfCone(*i); intersectionFan->remove(*i); debug<<"LOWERING DIMENSION OF CONE\n";//TODO: checking cones in order of dimension could avoid this. goto restart; } }*/ WeightReverseLexicographicTermOrder t(relativeInteriorPoint); log2 fprintf(Stderr,"Computing Gr\"obner basis with respect to:"); log2 AsciiPrinter(Stderr).printVector(relativeInteriorPoint); log2 fprintf(Stderr,"\n"); PolynomialSet h2=originalG;//g;//<------------------- Using the original set here speeds up things a lot in the starting cone via stable intersections algorithm // debug<<"g"<dimension()<=1+homog) //if(!containsMonomial(wall) && i->dimension()<=1+homog)//line for testing perturbation code { log2 fprintf(Stderr,"Initial ideal contains no monomial... caching weight vector.\n"); containsNoMonomialCache.insert(relativeInteriorPoint); } else { /* We need to compute the initial ideal with respect to "relativeInteriorPoint" perturbed with a basis of the span of the cone. Instead of perturbing we may as well compute initial ideal successively. We have already computed the initial ideal with respect to "relativeInteriorPoint". To get the perturbed initial ideal we take initial ideal with respect to each vector in the basis of the span.*/ IntegerVectorList empty; PolyhedralCone dual=PolyhedralCone(empty,i->getEquations(),i->ambientDimension()).dualCone(); dual.canonicalize(); IntegerVectorList basis=dual.getEquations(); PolynomialSet witnessLiftBasis=h2;//basis with respect to relativeInteriorPoint log2 debug<<"basis"<conesEnd())break; } log2 debug<<"TropicalBasis end\n"; log2 cerr <<"RETURNING"; return g; } /* PolynomialSet iterativeTropicalBasisNoPerturbation(int n, PolynomialSet g, PolyhedralFan *intersectionFan, int linealitySpaceDimension, bool doPrint) //Assuming g is homogeneous { TimerScope ts(&iterativeTropicalBasisTimer); PolyhedralFan f(n); if(!intersectionFan)intersectionFan=&f; *intersectionFan=tropicalPrincipalIntersection(n,g,linealitySpaceDimension); IntegerVectorSet containsNoMonomialCache; while(1) { // AsciiPrinter(Stderr).printPolyhedralFan(*intersectionFan); // assert(f.getMaxDimension()==1); IntegerVectorList l=intersectionFan->getRelativeInteriorPoints(); IntegerVectorList::const_iterator i; for(i=l.begin();i!=l.end();i++) { if(containsNoMonomialCache.count(*i)>0) { if(doPrint)fprintf(Stderr,"Weight vector found in cache.... contains no monomial.\n"); } else { WeightReverseLexicographicTermOrder t(*i); if(doPrint)fprintf(Stderr,"Computing Gr\"obner basis with respect to:"); if(doPrint)AsciiPrinter(Stderr).printVector(*i); if(doPrint)fprintf(Stderr,"\n"); PolynomialSet h2=g; buchberger(&h2,t); if(doPrint)fprintf(Stderr,"Done computing Gr\"obner basis.\n"); // AsciiPrinter(Stderr).printPolynomialSet(h2); PolynomialSet wall=initialFormsAssumeMarked(h2,*i); //fprintf(Stderr,"Wall ideal:\n"); //AsciiPrinter(Stderr).printPolynomialSet(wall); if(containsMonomial(wall)) { if(doPrint)fprintf(Stderr,"Initial ideal contains a monomial.\n"); Polynomial m(computeTermInIdeal(wall)); if(doPrint)fprintf(Stderr,"Done computing term in ideal\n"); Polynomial temp=m-division(m,h2,LexicographicTermOrder()); g.push_back(temp); if(doPrint)fprintf(Stderr,"Adding element to basis:\n"); if(doPrint)AsciiPrinter(Stderr).printPolynomial(temp); if(doPrint)fprintf(Stderr,"\n"); *intersectionFan=refinement(*intersectionFan,PolyhedralFan::bergmanOfPrincipalIdeal(temp),linealitySpaceDimension,true); break; } else { if(doPrint)fprintf(Stderr,"Initial ideal contains no monomial... caching weight vector.\n"); containsNoMonomialCache.insert(*i); } } } if(i==l.end())break; } return g; } */ gfan0.7/src/reversesearch.cpp0000644000175000017500000001111614656430617015700 0ustar andersanders#include "reversesearch.h" #include "buchberger.h" #include "wallideal.h" #include "printer.h" #include "lp.h" #include "log.h" bool ReverseSearch::computeSearchEdge(PolynomialSet &groebnerBasis, IntegerVector *edge) { // fprintf(Stderr,"Computing search edge.."); IntegerVectorList normals=wallInequalities(groebnerBasis); normals.sort(LexicographicTermOrder());// Is this needed to make the interior point computation deterministic? // fprintf(Stderr,"\nBasis with no interior point:\n"); // AsciiPrinter(Stderr).printPolynomialSet(groebnerBasis); if(normals.empty()) { log3 fprintf(Stderr,"WARNING: reversesearch.cpp - No normals\n"); } IntegerVectorList::const_iterator r=shootRay(normals); // fprintf(Stderr,"..done\n"); if(r!=normals.end()) { *edge=*r; return true; } return false; /* IntegerVectorList normals=wallNormals(groebnerBasis); normals.sort(LexicographicTermOrder()); for(IntegerVectorList::const_iterator i=normals.begin();i!=normals.end();i++) if(termOrder(*i,*i-*i)) if(isFacet(normals,i)) if(wallContainsPositiveVector(*i)) { *edge=*i; return true; } return false; */ } /*void ReverseSearch::setProgressPrinting(bool p) { progressPrinting=p; } */ static int depth; //int ReverseSearch::treeSize(const PolynomialSet &groebnerBasis) int ReverseSearch::treeSize(PolynomialSet &groebnerBasis) { PolynomialRing theRing=groebnerBasis.getRing(); depth++; // if(progressPrinting) { static int n; n++; if(!(n%10)) log2 fprintf(Stderr,"%i %i\n",n,depth); } int s=1; if(!targetBasis(groebnerBasis)){broken=true;return s;} IntegerVectorList flipable; // fprintf(Stderr,"Number of flipable facets:%i\n",flipable.size()); if(1) { // fprintf(Stderr,"isKnownToBeHomogeneous:%i\n",isKnownToBeHomogeneous); // fprintf(Stderr,"Start finding flipable\n"); flipable=wallFlipableNormals(groebnerBasis,isKnownToBeHomogeneous); // fprintf(Stderr,"done\n"); } else { // For non-homogeneous ideals the following test does not work since it also findes facets that do not intersect the positive orthant. assert(isKnownToBeHomogeneous); //Taken from Breadth-first search. Apparently this is faster.. IntegerVectorList normals=algebraicTest(wallInequalities(groebnerBasis),groebnerBasis); // fprintf(Stderr,"Number of inequalities:%i\n",normals.size()); // AsciiPrinter(Stderr).printVectorList(normals); for(IntegerVectorList::iterator i=normals.begin();i!=normals.end();i++) { if(!termOrder(*i,*i-*i)) { // AsciiPrinter(Stderr).printVector(*i); if(isFacet(normals,i)) { // fprintf(Stderr,"isFACET!n"); if(wallContainsPositiveVector(*i)) flipable.push_back(*i); } else { IntegerVectorList::iterator temp=i; temp++; normals.erase(i); temp--; i=temp; } } } } // AsciiPrinter(Stderr).printVectorList(flipable); // fprintf(Stderr,"Number of flipable facets:%i\n",flipable.size()); for(IntegerVectorList::iterator i=flipable.begin();i!=flipable.end();i++) { if(!termOrder(*i,*i-*i)) { PolynomialSet neighbour=flip(groebnerBasis,*i); IntegerVector edge; if(computeSearchEdge(neighbour,&edge)) if(dependent(edge,*i)) { groebnerBasis=PolynomialSet(theRing);//forget current s+=treeSize(neighbour); groebnerBasis=flip(neighbour,edge);//recall if(broken)return s; } } } depth--; return s; } PolynomialSet ReverseSearch::findRoot(PolynomialSet groebnerBasis) { log2 fprintf(Stderr,"Computing root\n"); log2 buchberger(&groebnerBasis,termOrder); IntegerVector edge; while(computeSearchEdge(groebnerBasis,&edge)) { log2 AsciiPrinter(Stderr).printVector(edge); groebnerBasis=flip(groebnerBasis,edge); } log2 fprintf(Stderr,"Done computing root\n"); return groebnerBasis; } ReverseSearch::ReverseSearch(const TermOrder &termOrder_): numberOfVertices(0), numberOfEdges(0), termOrder(termOrder_), isKnownToBeHomogeneous(false)//, // progressPrinting(false) { } void ReverseSearch::enumerate(const PolynomialSet &groebnerBasis) { broken=false; PolynomialSet root=findRoot(groebnerBasis); if(!isKnownToBeHomogeneous)isKnownToBeHomogeneous=isIdealHomogeneous(root); // fprintf(Stderr,"HOMOGENEOUS:%i\n",isKnownToBeHomogeneous); targetBeginEnumeration(groebnerBasis); numberOfVertices=treeSize(root); targetEndEnumeration(); // fprintf(Stderr,"numberOfVertices:%i\n",numberOfVertices); } gfan0.7/src/packedmonomial.h0000664000175000017500000002257214656430617015501 0ustar andersanders/* * packedmonomial.h * * Created on: Feb 7, 2014 * Author: anders */ #ifndef PACKEDMONOMIAL_H_ #define PACKEDMONOMIAL_H_ #include #include #include "monomial.h" #include "printer.h" /* * This is an attempt to implement packed monomials in a similar way as Singular does. * Methods are designed for speed, not flexibility. * * Only non-negative values can be stored. That saves a few bits. */ //first entry in the packed representation is the weight //However, to look it up, we use the last entry in varaibleData class PacMan{ public: // For each original coordinate struct VariableData { // int64 mask; u_int64_t mask; int index; int shift; VariableData(int64 mask_, int index_, int shift_): mask(mask_), index(index_), shift(shift_) { } }; vector variableData; struct WordData { // int64 overflowMasks; u_int64_t overflowMasks; int freeBits; WordData(): overflowMasks(0), freeBits(64) { } }; vector wordData; int nWords;//number of 64 bit words in packed monomial int nExps;//number of varaibles in ring int64 overflowFlag;//If overflow happens with these variables, this should be set to non-zero /* * The point of setting both addOverflowBit and freeOverflowBit is to save one and * having the overflowbit be part of a different coordinate. Overflow can still be checked, * but only with the trick in dividesNoAdditionalBit. */ VariableData alloc(int bitsNeeded, bool addOverflowBit, bool freeOverflowBit) { assert((!freeOverflowBit) || addOverflowBit); int j; for(j=0;j=bitsNeeded+addOverflowBit)break; } if(j==wordData.size()) { wordData.push_back(WordData()); } VariableData ret=VariableData(((bitsNeeded<64)?(((int64)1)< bitsNeeded(IntegerVector const &maxEntries) { vector ret; for(int i=0;i=0); while(v>0){v=v>>1;l++;} ret.push_back(l); } return ret; } bool fits(IntegerVector const &v) { for(int i=0;i const &bounds, int nWeightBits, bool deleteOverflowBit=false, int minimalNumberOfWords=4): //bounds are without overflow bit overflowFlag(0), wordData(minimalNumberOfWords) { // debug<<"Nvar:"<((i==variableData[j].index)?variableData[j].mask<(wordData[i].overflowMasks)<<" "; std::cerr<<"(overflow mask)\n"; } }; // Only use this class with "placement new" when NWORDS=0 // skal eksistere i to varianter // med fast antal words // med variabelt antal words, hvor stoerrelse laeses fra manager og plads til data opnaas ved "slicing" template class PackedMonomial{ public: u_int64_t data[NWORDS]; // int64 data[NWORDS]; public: u_int16_t hash()const { u_int64_t s=0; for(int i=0;i>48) &0xffffull)<<"\n"; return ((0xa847c7b39b4369aeull*s)>>48) &0xffffull; } PackedMonomial() { for(int i=0;i=man.nWords);//Assume that manager does not use too many words int nWords=NWORDS?NWORDS:man.nWords; for(int i=0;i>man.variableData.back().shift&man.variableData.back().mask; } IntegerVector extractExponent(PacMan const &man)const { int nExps=man.nExps; IntegerVector ret(nExps); for(int i=0;i(data[man.variableData[i].index])<<" "<>man.variableData[i].shift&man.variableData[i].mask; } return ret; } void initializeZero(PacMan const &man) { int nExps=man.nExps; for(int i=0;i=NWORDS); int i=0; int nWords=NWORDS?NWORDS:man.nWords; int64 overflow=0; do{ overflow|=((b.data[i]-data[i])^b.data[i]^data[i])&man.wordData[i].overflowMasks; }while(++i(data[i])<<" "; } void print()const { for(int i=0;i(data[i])<<" "; } /* bool compareLess(PackedMonomial const &b,PacMan const &man) { int nWords=NWORDS?NWORDS:man.nWords; int answer=0; for(int i=0;idata[i])answer=-1;}//write this without branches } return i<0; }*/ bool operator<(PackedMonomial const &b)const { for(int i=0;ib.data[i])return false; } return false; } bool sumCompare(PackedMonomial const &a2, PackedMonomial const &b1, PackedMonomial const &b2)const { for(int i=0;ib1.data[i]+b2.data[i])return false; } return false; } bool isEqualToSum(PackedMonomial const &b1, PackedMonomial const &b2)const { // cerr<<"isE\n"; for(int i=0;i r; for(int i=0;i class PackedPolynomial { vector > p; PackedPolynomial(IntegerVector const &weight, Polynomial const &p_, PacMan const &man) { for(TermMap::const_iterator i=p_.terms.begin();i!=p_.terms.end();i++) { p.push_back(PackedMonomial(dotLong(weight,i->first.exponent),i->first,man));//dot product may overflow } debug<<"SORTDISABLED"; // sort(p.begin(),p.end(),[](int a, int b) // { // return 1; // }); } void print(PacMan const &man) { // for(vector >::const_iterator i=p.begin();i!=p.end();i++)i->print(); for(int i=0;ifirst.exponent; if(!dif.isZero()) { ret=dif; } } return ret; } Polynomial integerVectorToBinomial(IntegerVector const &v, PolynomialRing const &r) { IntegerVector pos=max(v,IntegerVector(v.size())); IntegerVector neg=pos-v; Field field=r.getField(); // if(!field)field=theZMod2ZField();//should this be changed to the global field?? Term a(field.zHomomorphism(1),Monomial(r,pos)); Term b(field.zHomomorphism(-1),Monomial(r,neg)); Polynomial p=Polynomial(a)+Polynomial(b); p.mark(Monomial(r,pos)); return p; } gfan0.7/src/vektor.cpp0000644000175000017500000000723614656430617014361 0ustar andersanders#include "vektor.h" #include #include "printer.h" void outOfRange(int i, int n) { fprintf(Stderr,"Index out of range: index=%i vector lenght=%i\n",i,n); assert(0); } IntegerVectorList transposeIntegerVectorList(IntegerVectorList const &l) { int n=l.size(); assert(n); int m=l.begin()->size(); IntegerVectorList r; for(int i=0;isize(); int t=B.size(); assert(t); int s2=B.begin()->size(); assert(s1==s2); IntegerVectorList C; for(IntegerVectorList::const_iterator I=B.begin();I!=B.end();I++) { IntegerVector column(r); int j=0; for(IntegerVectorList::const_iterator J=A.begin();J!=A.end();J++) { column+=(*I)[j]*(*J); j++; } C.push_back(column); } return C; } /* Computes the greatest common divisor of two integers. The result is always positive. Asserts if both integers are zero. */ int gcdGFAN(int r, int s) { if(r<0)r=-r; if(s<0)s=-s; if(s0) { if(vv0) { if(v[i] const &chosen) { IntegerVectorList ret; for(IntegerVectorList::const_iterator i=l.begin();i!=l.end();i++) ret.push_back(i->subvector(chosen)); return ret; } void removeDuplicates(IntegerVectorList &l) { l.sort(); l.unique(); } IntegerVector randomIntegerVector(int n, int range) { IntegerVector ret(n); for(int i=0;i #include #include #include #include #include #include "gfanlib_memoryresource.h" #include "gfanlib_z.h" #include "gfanlib_q.h" namespace gfan{ static std::vector parseSequence(std::istream &s) { s>>std::noskipws; std::vector ret; std::vector stack; int state=0; std::string currentString; while(!s.eof()) { char c;s>>c; // std::cerr<<"PARSED::"<1)currentString.push_back(c); } else if(c==',' && stack.size()==1) { // ret.push_back(currentString.str()); // currentString=std::stringstream(""); std::string t; std::swap(t,currentString); ret.emplace_back(std::move(t)); } else if(c==')' || c=='}') { if(stack.size()>1)currentString.push_back(c); // assert(stack.size()); stack.pop_back(); if(stack.size()==0) { ret.push_back(std::move(currentString)); break; } } else currentString.push_back(c); } return ret; } inline void outOfRange(int i, int n) { std::cerr<<"Index out of range. i="<::const_iterator i=a.v.begin();i!=a.v.end();i++) { if(i!=a.v.begin()) f<<","; f<<*i; } return f<<")"; } friend std::istream &operator>>(std::istream &f, Vector &a) { auto v=parseSequence(f); a.resize(v.size()); int i=0; for(auto c:v) a[i++]=typ(c); return f; } std::string toString()const { std::stringstream f; f<<*this; return f.str(); } typ gcd()const { // typ temp1,temp2; typ ret(int(0)); // std::cerr<<"gcd1\n"; for(unsigned i=0;i ZVector; typedef Vector QVector; typedef Vector IntVector; inline QVector ZToQVector(ZVector const &v) { QVector ret(v.size()); for(unsigned i=0;i>::value,"Not move constructible!" ); static_assert(std::is_move_assignable>::value,"Not move assignable!" ); static_assert(std::is_nothrow_move_assignable>::value,"Not nothrow move assignable!" ); static_assert(std::is_nothrow_move_constructible>::value,"Not nothrow move constructible!" ); static_assert(std::is_nothrow_destructible>::value,"Not nothrow destructible!" ); } #endif /* LIB_ZVECTOR_H_ */ gfan0.7/src/app_supportindices.cpp0000644000175000017500000000126114656430617016752 0ustar andersanders#include "vektor.h" #include "printer.h" #include "parser.h" #include "gfanapplication.h" class SupportIndicesApplication : public GFanApplication { public: bool includeInDefaultInstallation() { return false; } SupportIndicesApplication() { registerOptions(); } const char *name() { return "_supportindices"; } int main() { FileParser P(Stdin); IntegerVector v=P.parseIntegerVector(); for(int i=0;i B; for(int i=0;i<3;i++)B.insert(2*i+1); lp.setCurrentBasis(B); */ if(!lp.findFeasibleBasis()) { fprintf(Stderr,"LP is infeasible\n"); } else { int status; do { AsciiPrinter Q(Stdout); lp.print(Q); status=lp.step(); } while(status==1); fprintf(Stderr,status?"LP is unbounded.\n":"Optimal solution found.\n"); } return 0; } const char *helpText() { return "Test program for FieldLP.\n"; } }; static LPSolveApplication theApplication; gfan0.7/src/traverser_stableintersection.cpp0000644000175000017500000000627614656430617021050 0ustar andersanders#include "traverser_stableintersection.h" #include #include "halfopencone.h" #include "tropical.h" #include "division.h" #include "wallideal.h" #include "groebnerengine.h" #include "tropical2.h" #include "multiplicity.h" #include "mixedvolume.h" #include "log.h" StableIntersectionTraverser::StableIntersectionTraverser(PolynomialSet const &coneGroebnerBasis_, PolynomialSet const &idealGroebnerBasis_): ConeTraverser(coneGroebnerBasis_.getRing().getNumberOfVariables()), coneGroebnerBasis(coneGroebnerBasis_), idealGroebnerBasis(idealGroebnerBasis_), theCone(coneGroebnerBasis_.getRing().getNumberOfVariables()) { n=coneGroebnerBasis_.getRing().getNumberOfVariables(); updatePolyhedralCone(mixedVolume(coneGroebnerBasis)); PolyhedralCone homogeneitySpac=homogeneitySpace(coneGroebnerBasis); d=homogeneitySpac.dimensionOfLinealitySpace(); } void StableIntersectionTraverser::updatePolyhedralCone(int multiplicity) { theCone=PolyhedralCone(fastNormals(wallInequalities(idealGroebnerBasis)),wallInequalities(coneGroebnerBasis),n); theCone.canonicalize(); theCone.setMultiplicity(multiplicity); } static void checkSameLeadingTerms(PolynomialSet const &a, PolynomialSet const &b) { assert(a.size()==b.size()); PolynomialSet::const_iterator A=a.begin(); for(PolynomialSet::const_iterator B=b.begin();B!=b.end();B++,A++) assert(A->getMarked().m.exponent==B->getMarked().m.exponent); } void StableIntersectionTraverser::changeCone(IntegerVector const &ridgeVector, IntegerVector const &rayVector) { IntegerVectorList m; m.push_back(ridgeVector); m.push_back(rayVector); MatrixTermOrder T(m); idealGroebnerBasis.markAndScale(T); coneGroebnerBasis=initialFormsAssumeMarked(initialFormsAssumeMarked(idealGroebnerBasis,ridgeVector),rayVector); updatePolyhedralCone(mixedVolume(coneGroebnerBasis)); checkSameLeadingTerms(idealGroebnerBasis,coneGroebnerBasis); } IntegerVectorList StableIntersectionTraverser::link(IntegerVector const &ridgeVector) { assert(idealGroebnerBasis.containsInClosedGroebnerCone(ridgeVector)); PolynomialSet tempIdeal=initialFormsAssumeMarked(idealGroebnerBasis,ridgeVector); tempIdeal.simplestPolynomialsFirst(); PolyhedralFan theLink=tropicalHyperSurfaceIntersectionClosed(n,tempIdeal); IntegerVectorList rays1=theLink.getRaysInPrintingOrder(0); log2 { cerr<<"Ray candidates:"< #include #define NOOUTPUT 0 class SecondaryFanApplication : public GFanApplication { SimpleOption hirschOption; SimpleOption searchOption; IntegerOption scaleOption; StringOption optionRestrictingFan; SimpleOption symmetryOption; SimpleOption optionIgnoreCones; InterruptOption optionInterrupt; public: const char *helpText() { return "This program computes the secondary fan of a vector configuration. The configuration is given as an ordered list of vectors. In order to compute the secondary fan of a point configuration an additional coordinate of ones must be added. For example {(1,0),(1,1),(1,2),(1,3)}.\n"; } SecondaryFanApplication(): searchOption("--unimodular","Use heuristics to search for unimodular triangulation rather than computing the complete secondary fan"), scaleOption("--scale","Assuming that the first coordinate of each vector is 1, this option will take the polytope in the 1 plane and scale it. The point configuration will be all lattice points in that scaled polytope. The polytope must have maximal dimension. When this option is used the vector configuration must have full rank. This option may be removed in the future."), symmetryOption("--symmetry","Tells the program to read in generators for a group of symmetries (subgroup of $S_n$) after having read in the vector configuration. The program checks that the configuration stays fixed when permuting the variables with respect to elements in the group. The output is grouped according to the symmetry.\n"), optionRestrictingFan("--restrictingfan","Specify the name of a file containing a polyhedral fan in Polymake format. The computation of the Secondary fan will be restricted to this fan. If the --symmetry option is used then this restricting fan must be invariant under the symmetry and the orbits in the file must be with respect to the specified group of symmetries. The orbits of maximal cones of the file are then read in rather than the maximal cones.\n",0), optionIgnoreCones("--nocones","Tells the program not to output the CONES and MAXIMAL_CONES sections, but still output CONES_COMPRESSED and MAXIMAL_CONES_COMPRESSED if --symmetry is used."), hirschOption("--hirsch","") { hirschOption.hide(); registerOptions(); } const char *name() { return "_secondaryfan"; } PolyhedralFan enumerate(Triangulation2 const &t) { PolyhedralFan ret(t.getN()); list active; active.push_back(t); IntegerVectorList interiorPoints; interiorPoints.push_back(t.interiorPoint()); while(!active.empty()) { Triangulation2 a=active.front(); PolyhedralCone C=a.secondaryCone(); // if(active.size()>100)break;//SLETMIGGGGG //log0 fprintf(stderr,"a\n"); /* { PolyhedralCone C2=C; C2.canonicalize(); }*/ C.canonicalize(); //log0 fprintf(stderr,"b\n"); ret.insert(C); AsciiPrinter P(Stderr); // C.print(&P); active.pop_front(); // fprintf(stderr,"pop\n"); IntegerVectorList flips=a.facets(); for(IntegerVectorList::const_iterator i=flips.begin();i!=flips.end();i++) { { IntegerVectorList t=C.getEquations(); t.push_back(*i); PolyhedralCone CF(C.getHalfSpaces(),t); CF.findFacets(); // CF.canonicalize(); } if(!i->isNonNegative()) //is this the right condition or should i be negated? // if(!(-*i).isNonNegative()) //is this the right condition or should i be negated? { Triangulation2 b=a; log1 AsciiPrinter(Stderr)<<*i; /*fprintf(stderr,"Before:"); b.print(P);*/ // b.flip(*i); b.flipNew(-*i); /*fprintf(stderr,"After:"); b.print(P);*/ if(!b.isEmpty()) { IntegerVectorList inequalities=b.inequalities(); bool isKnown=false; for(IntegerVectorList::const_iterator j=interiorPoints.begin();j!=interiorPoints.end();j++) { bool match=true; for(IntegerVectorList::const_iterator k=inequalities.begin();k!=inequalities.end();k++) { if(dotLong(-*k,*j)<0) { match=false; break; } } if(match)isKnown=true; } if(!isKnown) { active.push_back(b); interiorPoints.push_back(b.interiorPoint()); } } } } } return ret; } PolyhedralFan interactive(Triangulation2 const &t) { Triangulation2 a=t; while(1) { fprintf(stdout,"Triangles in current triangulation:%i\n",(int)a.bases.size()); PolyhedralCone C=a.secondaryCone(); C.canonicalize(); AsciiPrinter Pstd(Stderr); IntegerVectorList flips=a.facets(); int I=0; for(IntegerVectorList::const_iterator i=flips.begin();i!=flips.end();i++,I++) { fprintf(stdout,"%i:\n",I); Pstd.printVector(*i); if(!i->isNonNegative()) { Triangulation2 b=a; //fprintf(stderr,"Before:"); //b.print(P); // b.flip(*i); /* b.flipNew(*i); //fprintf(stderr,"After:"); //b.print(P); fprintf(stdout,"Triangles in new triangulation:%i\n",b.bases.size()); */ } fprintf(stdout,"\n"); } int s; //cin >> s; int err=fscanf(stdin,"%i",&s); assert(err==1); if((s>=0)&&(sisNonNegative()) { Triangulation2 b=a; b.flipNew(-*i); fprintf(stdout,"Triangles in new triangulation:%i\n",(int)b.bases.size()); if(b.bases.size()==abortAtSize) { b.print(Pstd); exit(0); } if((b.bases.size()>a.bases.size())||((rand()&127)==0)) { a=b; break; } } } } PolyhedralFan ret(0); return ret; } PolyhedralFan automaticHirsch(Triangulation2 const &t) { Triangulation2 a=t; while(1) { int nVertices=a.bases.size(); int nEdges=a.coDimensionOneTriangles().size(); int diameter=a.edgeGraph().diameter(); int dimension=a.getD(); int nFacets=a.usedRays().size(); fprintf(stdout,"NVER: %i NEDGES: %i DIAMETER:%i DIMENSION:%i NFACETS:%i\n",nVertices,nEdges,diameter,dimension,nFacets); AsciiPrinter Pstd(Stderr); IntegerVectorList flips=a.facets(); int I=0; float currentScore=a.hirschScore(); cerr << "Current score: " << currentScore <isNonNegative()) { Triangulation2 b=a; b.flipNew(-*i); float bScore=b.hirschScore(); fprintf(stdout,"New score:%f\n",bScore); if((bScore>currentScore)||((rand()&31)==0)) { a=b; break; } } } } PolyhedralFan ret(0); return ret; } int main() { // debug<<(int)sizeof(SymmetricComplex::Cone); // debug<<(int)sizeof(IntegerVector); // debug<<(int)sizeof(vector); IntegerMatrix A=rowsToIntegerMatrix(FileParser(Stdin).parseIntegerVectorList()).transposed(); int n=A.getWidth(); SymmetryGroup s(n); if(symmetryOption.getValue()) { IntegerVectorList generators=FileParser(Stdin).parseIntegerVectorList(); for(IntegerVectorList::const_iterator i=generators.begin();i!=generators.end();i++) { assert(i->size()==n); FieldMatrix M1=integerMatrixToFieldMatrix(A,Q); FieldMatrix M2=integerMatrixToFieldMatrix(rowsToIntegerMatrix(SymmetryGroup::permuteIntegerVectorList(A.getRows(),*i)),Q); M1.reduce(); M1.REformToRREform(true); M2.reduce(); M2.REformToRREform(true); if(!(M1==M2)) { AsciiPrinter(Stderr) << "Permutation "<< *i << " does not keep the configuration fixed.\n"; assert(0); } } s.computeClosure(generators); s.createTrie(); } if(scaleOption.getValue()) { if(::rank(A)!=A.getHeight()) { cerr << "The vector configuration must have full rank in order to use the scale option.\n"; assert(0); } int s=scaleOption.getValue(); cout << "Input configuration:" << endl; AsciiPrinter(Stdout)<dimension()< #include "parser.h" #include "printer.h" #include "polynomial.h" #include "buchberger.h" #include "wallideal.h" #include "termorder.h" #include "gfanapplication.h" #include "tropical2.h" #include "log.h" using namespace std; class InitialFormsApplication : public GFanApplication { SimpleOption optionIdeal; SimpleOption optionPair; SimpleOption optionMark; SimpleOption optionList; public: const char *helpText() { return "This program converts a list of polynomials to a list of their initial forms with respect to the vector given after the list.\n"; } InitialFormsApplication(): optionIdeal("--ideal","Treat input as an ideal. This will make the program compute the initial ideal of the ideal generated by the input polynomials. The computation is done by computing a Groebner basis with respect to the given vector. The vector must be positive or the input polynomials must be homogeneous in a positive grading. None of these conditions are checked by the program.\n"), optionPair("--pair","Produce a pair of polynomial lists. Used together with --ideal this option will also write a compatible reduced Groebner basis for the input ideal to the output. This is useful for finding the Groebner cone of a non-monomial initial ideal.\n"), optionMark("--mark","If the --pair option is and the --ideal option is not used this option will still make sure that the second output basis is marked consistently with the vector."), optionList("--list","Read in a list of vectors instead of a single vector and produce a list of polynomial sets as output.") { registerOptions(); } const char *name() { return "_initialforms"; } int main() { FileParser P(Stdin); PolynomialSet g=P.parsePolynomialSetWithRing(); IntegerVectorList wList; if(optionList.getValue()) wList=P.parseIntegerVectorList(); else wList.push_back(P.parseIntegerVector()); for(IntegerVectorList::const_iterator i=wList.begin();i!=wList.end();i++) { log1 cerr<<"-\n"; assert(i->size()==g.getRing().getNumberOfVariables()); if(optionMark.getValue()) { WeightReverseLexicographicTermOrder T(*i); g.markAndScale(T); } if(optionIdeal.getValue()) { WeightReverseLexicographicTermOrder T(*i); buchberger(&g,T); } pout<getEquations().front(); IntegerVector u=v.supportAsZeroOneVector(); if(zeroOrTwo(u[0]+u[1]+u[2]) && zeroOrTwo(u[3]+u[4]+u[5]) && zeroOrTwo(u[6]+u[7]+u[8])) f3.insert(*i); } f3.printWithIndices(&pout); // pout << f2; } else for(PolyhedralFan::coneIterator i=f1.conesBegin();i!=f1.conesEnd();i++) { P<<*i; P<<"-------------------------------------\n"; } return 0; } }; static FanConesApplication theApplication; gfan0.7/src/traverser_sphere.h0000644000175000017500000000154314656430617016072 0ustar andersanders#ifndef TRAVERSER_SPHERE_H_INCLUDED #define TRAVERSER_SPHERE_H_INCLUDED #include "symmetrictraversal.h" #include "polynomial.h" /** */ class SphereTraverser: public ConeTraverser { int currentConeIndex; vector const &cones; map > adjacency; PolyhedralCone theCone; PolyhedralCone theRestrictingCone; // int n,d; void updatePolyhedralCone(); public: IntegerVector currentNormal; SphereTraverser(vector const &cones_, map > const &ajacency_, IntegerVector const &startCone, IntegerVector const &normal); virtual void changeCone(IntegerVector const &ridgeVector, IntegerVector const &rayVector); virtual IntegerVectorList link(IntegerVector const &ridgeVector); PolyhedralCone & refToPolyhedralCone(); }; #endif gfan0.7/src/macaulay2.h0000644000175000017500000000131414656430617014361 0ustar andersanders#ifndef MACAULAY2_H_INCLUDED #define MACAULAY2_H_INCLUDED #include "printer.h" #include "vektor.h" #include "decompose.h" class Pipe { int fdM2Input[2]; int fdM2Output[2]; protected: FILE *pipeInput; FILE *pipeOutput; public: Pipe(); ~Pipe(); }; class Macaulay2Pipe : public Pipe { AsciiPrinter printer; public: Macaulay2Pipe(); ~Macaulay2Pipe(); void skipStartOfLine(); char *readLine(); int readInt(); bool readBool(); void setPolynomialRing(int numberOfVariables); void setPolynomialRing(gbasis const &g); int getPdimCokerGensMonomial(gbasis const &monomialIdeal); bool isHomogeneousIdeal(gbasis &ideal); StandardPairList standardPairs(gbasis &monomialIdeal); }; #endif gfan0.7/src/minors.cpp0000644000175000017500000000366014656430617014353 0ustar andersanders#include "minors.h" #include "printer.h" #include using namespace std; static int lookup(vector const &v, int i) { for(int j=0;j const &v) { int ret=1; for(int i=0;iv[j])ret=-ret; return ret; } PolynomialSet minors(PolynomialRing const &R, int r, int d, int n, bool withNames, bool M2Convention) { int namesOffset=d*n; int entriesOffset=0; PolynomialSet ret(R); vector I; if(M2Convention) { for(int i=0;i J; if(M2Convention) { for(int i=0;i K; for(int i=0;i::const_iterator s=K.begin(); for(int i=0;i>; SOSConstrant(); } class Problem { PolynomialRing r; vector sosVariables; vector constraints; public: Problem(PolynomialRing const &r_): r(r_) { } void addSOSConstraint(SOSConstraint const &constraint) { } void addSOSVariable(); }; gfan0.7/src/app_minors.cpp0000644000175000017500000002647614656430617015225 0ustar andersanders#include "vektor.h" #include "printer.h" #include "parser.h" #include "gfanapplication.h" #include "minors.h" #include "field_rationals.h" #include class MinorsApplication : public GFanApplication { IntegerOption rOption; IntegerOption dOption; IntegerOption nOption; SimpleOption M2Option; SimpleOption optionWithNames; SimpleOption dressianOption; SimpleOption pluckerSymmetriesOption; SimpleOption grassmannNormalizOption; SimpleOption symmetryOption; SimpleOption parametrizeOption; SimpleOption ultraMetricOption; // SimpleOption threeTermOption; public: const char *helpText() { return "This program will generate the r*r minors of a d*n matrix of indeterminates.\n"; } MinorsApplication(): rOption("-r","Specify r.",1), dOption("-d","Specify d.",1), nOption("-n","Specify n.",1), M2Option("-M2","Use Macaulay2 conventions for order of variables."), dressianOption("--dressian","Produce tropical defining the Dressian(3,n) instead. (The signs may not be correct, that is the equations may not be Pluecker relations.)"), optionWithNames("--names","Assign names to the minors."), pluckerSymmetriesOption("--pluckersymmetries","Do nothing but produce symmetry generators for the Pluecker ideal."), grassmannNormalizOption("--grassmannnormalize","Produce polynomials describing the tropical polynomial map taking a plucker vector to a plucker vector where the leaf edges have length one."), symmetryOption("--symmetry","Produces a list of generators for the group of symmetries keeping the set of minors fixed. (Only without --names)."), parametrizeOption("--parametrize","Parametrize the set of d times n matrices of Barvinok rank less than or equal to r-1 by a list of tropical polynomials."), ultraMetricOption("--ultrametric","Produce tropical equations cutting out the ultrametrics.") /*, threeTermOption("--threeTerm","Do nothing but output the three term Plucker relations.")*/ { registerOptions(); grassmannNormalizOption.hide(); } const char *name() { return "_minors"; } IntegerVectorList symmetries(int r, int d, int n) { IntegerVectorList ret; { IntegerVector v1(d*n); IntegerVector v2(d*n); IntegerVector v3(d*n); IntegerVector v4(d*n); for(unsigned int i=0;i const &v, int i) { for(int j=0;j pnames=subsetVariableNames("p",n,d,M2); vector qnames=subsetVariableNames("q",n,d,M2); vector names(pnames.size()*2); for(int i=0;i I; for(int i=0;i setkl; setkl.insert(k); setkl.insert(l); Polynomial f(R); Polynomial g(R); vector J; for(int i=0;i setij; setij.insert(i); setij.insert(j); set setik; setik.insert(i); setik.insert(k); set setjk; setjk.insert(j); setjk.insert(k); set setil; setil.insert(i); setil.insert(l); set setjl; setjl.insert(j); setjl.insert(l); if((J[l]==0)) { IntegerVector v=w; v[subsetToVariableIndex(setil,n,d,M2)]+=-1; v[subsetToVariableIndex(setjl,n,d,M2)]+=-1; v[subsetToVariableIndex(setij,n,d,M2)]+=1; v[subsetToVariableIndex(setkl,n,d,M2)]+=1; f+=Polynomial(Term(R.getField().zHomomorphism(1),Monomial(R,v))); } if((J[k]==0)) { IntegerVector v=w; v[subsetToVariableIndex(setik,n,d,M2)]+=-1; v[subsetToVariableIndex(setjk,n,d,M2)]+=-1; v[subsetToVariableIndex(setij,n,d,M2)]+=1; v[subsetToVariableIndex(setkl,n,d,M2)]+=1; g+=Polynomial(Term(R.getField().zHomomorphism(1),Monomial(R,v))); } } while(next_permutation(J.begin(),J.end())); IntegerVector v(names.size()); v[pnames.size()+subsetToVariableIndex(setkl,n,d,M2)]=1; ret.push_back(Polynomial(Term(R.getField().zHomomorphism(-1),Monomial(R,v)))+f*g); } while(next_permutation(I.begin(),I.end())); return ret; } int main() { FileParser P(Stdin); int d=dOption.getValue(); int n=nOption.getValue(); int r=rOption.getValue(); bool M2=M2Option.getValue(); assert(r<=d); assert(r<=n); PolynomialRing R(Q,matrixVariableNames("m",d,n)); if(parametrizeOption.getValue()) { vector A=matrixVariableNames("a",d,r-1); vector B=matrixVariableNames("b",r-1,n); A.insert(A.end(),B.begin(),B.end()); PolynomialRing R2(Q,A); PolynomialSet s(R2); for(int i=0;i=3) { vector v(n); for(int i=0;i<3;i++) v[n-1-i]=1; do { vector indices; for(int i=0;i varIndices({ subsetToVariableIndex(set({indices[0],indices[1]}),n,2,M2), subsetToVariableIndex(set({indices[1],indices[2]}),n,2,M2), subsetToVariableIndex(set({indices[2],indices[0]}),n,2,M2)}); Polynomial p=R.zero(); for(auto i:varIndices) p+=Term( R.getField().zHomomorphism(1), Monomial(R,IntegerVector::standardVector(R.getNumberOfVariables(), i))); g.push_back(p); } while(next_permutation(v.begin(),v.end())); } AsciiPrinter(Stdout).printPolynomialRing(g.getRing()); AsciiPrinter(Stdout).printPolynomialSet(g); } else if(dressianOption.getValue()) { // int d=3; PolynomialRing R(Q,subsetVariableNames("p",n,d,M2)); PolynomialSet g(R); vector I; if(n-d-2>=0)if(d-2>=0) for(int i=0;i ijkl; set S; int m=32873; for(int i=0;i s=S;s.insert(i);s.insert(j);//s.insert(m); pA[subsetToVariableIndex(s,n,d,M2)]=1; } { set s=S;s.insert(k);s.insert(l);//s.insert(m); pA[subsetToVariableIndex(s,n,d,M2)]=1; } { set s=S;s.insert(i);s.insert(k);//s.insert(m); pB[subsetToVariableIndex(s,n,d,M2)]=1; } { set s=S;s.insert(j);s.insert(l);//s.insert(m); pB[subsetToVariableIndex(s,n,d,M2)]=1; } { set s=S;s.insert(i);s.insert(l);//s.insert(m); pC[subsetToVariableIndex(s,n,d,M2)]=1; } { set s=S;s.insert(j);s.insert(k);//s.insert(m); pC[subsetToVariableIndex(s,n,d,M2)]=1; } Polynomial p= Polynomial(Term(R.getField().zHomomorphism(1),Monomial(R,pA))) -Polynomial(Term(R.getField().zHomomorphism(1),Monomial(R,pB))) +Polynomial(Term(R.getField().zHomomorphism(1),Monomial(R,pC))); g.push_back(p); } } while(next_permutation(I.begin(),I.end())); AsciiPrinter(Stdout).printPolynomialRing(R); AsciiPrinter(Stdout).printNewLine(); AsciiPrinter(stdout).printPolynomialSet(g); } else if(pluckerSymmetriesOption.getValue()) { int N=subsetVariableNames("p",n,d,M2).size(); IntegerVectorList permutations1; { IntegerVector p1(n); IntegerVector p2(n); for(int i=0;i2) { p2[0]=1; p2[1]=0; } permutations1.push_back(p1); permutations1.push_back(p2); } IntegerVectorList permutations2; IntegerVectorList signs2; for(IntegerVectorList::const_iterator k=permutations1.begin();k!=permutations1.end();k++) { IntegerVector p(N); IntegerVector signs(N); vector I; for(int i=0;i indexSet1; set indexSet2; list indexSet2List; for(int i=0;i::const_iterator i=indexSet2List.begin();i!=indexSet2List.end();i++) for(list::const_iterator j=indexSet2List.begin();j!=i;j++) if(*i<*j)permSign*=-1; p[subsetToVariableIndex(indexSet1,n,r,M2)]=subsetToVariableIndex(indexSet2,n,r,M2); signs[subsetToVariableIndex(indexSet2,n,r,M2)]=permSign; } while(next_permutation(I.begin(),I.end())); signs2.push_back(signs); permutations2.push_back(p); } AsciiPrinter(Stdout).printVectorList(permutations2); AsciiPrinter(Stdout).printVectorList(signs2); } /* else if(threeTermOption.getValue()) { for(int i=0;i S; vector ijkl; list indexSet2List; for(int i=0;i a=matrixVariableNames("m",d,n); vector b=subsetVariableNames("p",n,d,M2); for(vector::const_iterator i=b.begin();i!=b.end();i++)a.push_back(*i); R=PolynomialRing(Q,a); } PolynomialSet p=minors(R,r,d,n,optionWithNames.getValue(),M2); AsciiPrinter(Stdout).printPolynomialRing(p.getRing()); AsciiPrinter(Stdout).printNewLine(); AsciiPrinter(Stdout).printPolynomialSet(p); } if(symmetryOption.getValue()) { AsciiPrinter(Stdout)<terms.begin();j!=i->terms.end();j++) return j->second; assert(0); return a; } /* * This procedure does not work */ static PolynomialSet singleSaturation(PolynomialSet const &s)//TO DO: call idealIntersection to do the intersection { assert(0); PolynomialRing theRing=s.getRing(); int n=s.numberOfVariablesInRing(); FieldElement one=getFieldElement(s).one(); // add a variable // PolynomialSet s2=s;s2.changeNumberOfVariables(n+1); IntegerVector temp(theRing.getNumberOfVariables()); PolynomialSet s2=s.homogenization(theRing.withVariablesAppended("T"),&temp); /* IntegerMatrix mat(n+1,n); for(int i=0;i /* Faster version of the code in bergman.cpp. */ /** The hypergraph of ridges and facets can be considered as a usual bipartite graph where the right nodes are the ridges and the left nodes are the facets. We wish to make a traversal of this bipartite graph keeping track of the boundary edges of the traversed set. The ConeOrbit object represents the orbit of a ridge. The edges of the ridge are listed but only those which belong to the boundary of the set of ridges seen so far. When a ridge is discovered the ConeOrbit object will be created with all its edges present (except the one it was reached by). As progress in the computation is made these edges will be deleted. */ class Boundary2 { typedef pair EFirst; typedef pair ESecond; SymmetryGroup const &sym; map theSet; int theSetSize; public: Boundary2(SymmetryGroup const &sym_): sym(sym_), theSetSize(0) { } int size()const { return theSetSize; } pair normalForm(IntegerVector const &ridge, IntegerVector const &ray)const { pair ret; IntegerVector perm; ret.first=sym.orbitRepresentative(ridge,&perm); ret.second=sym.orbitRepresentativeFixing(SymmetryGroup::compose(perm,ray),ret.first); return ret; } bool containsFlip(IntegerVector const &ridge, IntegerVector const &ray, IntegerVectorList *storedInList_, IntegerVectorList::iterator listIterator_) { assert(ridge.size()==ray.size()); EFirst p=normalForm(ridge,ray); if(theSet.count(p)==1) { theSet[p].first->erase(theSet[p].second); theSet.erase(p); theSetSize--; return true; } theSet[p]=ESecond(storedInList_,listIterator_); theSetSize++; return false; } void removeDuplicates(IntegerVector const &ridge, IntegerVectorList &rays)const { IntegerVectorList ret; set representatives; for(IntegerVectorList::const_iterator i=rays.begin();i!=rays.end();i++) { IntegerVector rep=sym.orbitRepresentativeFixing(*i,ridge); if(representatives.count(rep)==0) { representatives.insert(rep); ret.push_back(*i); } } rays=ret; } void print()const { cerr<< "Boundary" <::const_iterator i=theSet.begin();i!=theSet.end();i++) { AsciiPrinter P(Stderr); P << i->first.first << i->first.second; cerr << endl; } cerr<getMarked().m.exponent==B->getMarked().m.exponent); } static void printMarkedTermIdeal(PolynomialSet const &g, string const &s) { PolynomialSet a=g.markedTermIdeal(); PolynomialSet b=a; minimize(&b); cerr << "Printing marked termideal. "<getMarked(); P.printPolynomial(m); if(division(m,temp,T).isZero()){cerr<<"YES";} cerr< const &facetStack, list const &ridgeStack) { list::const_iterator i=facetStack.begin(); list::const_iterator j=ridgeStack.begin(); AsciiPrinter P(Stderr); cerr<<"STACK:"<ridgeStack.size())goto entry; do { cerr<<"RIDGE:"<parentRidge<rays<parentRay; cerr<ridges; cerr<> a; } PolyhedralFan tropicalTraverse(PolynomialSet coneGroebnerBasis, PolynomialSet idealGroebnerBasis, SymmetryGroup const *symmetryGroup) { PolynomialSet ideal=idealGroebnerBasis; PolynomialRing theRing=coneGroebnerBasis.getRing(); assert(coneGroebnerBasis.numberOfVariablesInRing()==idealGroebnerBasis.numberOfVariablesInRing()); int n=coneGroebnerBasis.numberOfVariablesInRing(); PolyhedralFan ret(n); PolyhedralCone homogeneitySpac=homogeneitySpace(coneGroebnerBasis); int d=homogeneitySpac.dimensionOfLinealitySpace(); SymmetryGroup localSymmetryGroup(n); if(!symmetryGroup)symmetryGroup=&localSymmetryGroup; Boundary2 boundary(*symmetryGroup); list facetStack; list ridgeStack; int numberOfCompletedFacets=0; int numberOfCompletedRidges=0; int stackSize=0; PolyhedralCone currentFacet(n); IntegerVector facetUniqueVector; goto entry; while(1) { L1: // boundary.print(); //printStack(facetStack,ridgeStack); if(!facetStack.front().ridges.empty()) { cerr<<"1"; pathStepRidge top; PolyhedralCone link=currentFacet.link(facetStack.front().ridges.front()); link.canonicalize(); cerr<<"2"; top.parentRidge=facetStack.front().ridges.front(); top.parentRay=link.getUniquePoint(); cerr<<"3"; AsciiPrinter P(Stderr); // P<<"Cone groebner basis"<theCone; rayCone.canonicalize(); { if(rayCone.getUniquePoint().isZero())trouble=true; } rays.push_back(rayCone.getUniquePoint()); } if(trouble) { b.print(P); P<getMarked())); } AsciiPrinter(Stdout).printPolynomialSet(LT); } int main() { FileParser P(Stdin); if(!optionMultipleSets.getValue()) { PolynomialSet s=P.parsePolynomialSetWithRing(); AsciiPrinter(Stdout).printPolynomialRing(s.getRing()); AsciiPrinter(Stdout).printNewLine(); p(s); } else { PolynomialSetList l=P.parsePolynomialSetListWithRing(); assert(l.size()!=0); AsciiPrinter(Stdout).printPolynomialRing(l.begin()->getRing()); AsciiPrinter(Stdout).printNewLine(); fprintf(Stdout,"{\n"); for(PolynomialSetList::const_iterator i=l.begin();i!=l.end();i++) { if(i!=l.begin())fprintf(Stdout,",\n"); p(*i); } fprintf(Stdout,"}\n"); } return 0; } }; static LeadingTermsApplication theApplication; gfan0.7/src/nbody.cpp0000644000175000017500000002250514656430617014156 0ustar andersanders#include "polynomial.h" #include "field_rationals.h" #include "printer.h" #include "log.h" #include #include static int rIndex(int i, int j, int N, bool withMasses) { if(j variableNames(int N, bool withMasses, bool withSVariables) { vector ret; if(withMasses) { for(int i=0;i a; for(int i=4;i::const_iterator i=a.begin(); int I=0; while((*i)==0){i++;I++;} int first=I; do{i++;I++;}while((*i)==0); int second=I; do{i++;I++;}while((*i)==0); int third=I; do{i++;I++;}while((*i)==0); int fourth=I; // cerr< l; for(int i=0;i indexList; indexList.push_back(0); for(int i=0;i perm; for(int i=0;iperm[x])s*=-1; if(s==1) p+=prod; else p-=prod; } while(next_permutation(perm.begin(),perm.end())); ret.push_back(p); } while(prev_permutation(l.begin(),l.end())); return ret; } Polynomial massEquation(PolynomialRing const &r, int N, bool withMasses, bool saturate) { Polynomial ret(r); for(int i=0;i #include "parser.h" #include "printer.h" #include "polynomial.h" #include "buchberger.h" #include "wallideal.h" #include "termorder.h" #include "gfanapplication.h" #include "tropical2.h" #include "tropical.h" #include "saturation.h" #include "log.h" using namespace std; class AndersApplication : public GFanApplication { IntegerOption start; IntegerOption endSkip; SimpleOption ignoreNegative; SimpleOption outputIdealToBeSaturated; SimpleOption homogenize; public: bool includeInDefaultInstallation() { return false; } const char *helpText() { return "This program takes: Ring, ideal, generators, list of vectors. For each vector it compute the sum of the initial ideal and the ideal generated by the initial foms. Then it does a saturation.\n"; } AndersApplication(): start("--start","Specify number of vectors to skip at start.",0), endSkip("--endskip","Specify number of vectors to skip at end.",0), ignoreNegative("--ignorenegative","Ignore a vector if its coordinate sum is negative."), outputIdealToBeSaturated("--showideal","Prints the ideal that needs saturation."), homogenize("-h","Homogenise the generators before saturating and use faster saturation.") { registerOptions(); } const char *name() { return "_anders"; } int main() { FileParser P(Stdin); PolynomialSet g=P.parsePolynomialSetWithRing(); PolynomialSet h=P.parsePolynomialSet(g.getRing()); IntegerVectorList wList=P.parseIntegerVectorList(); vector list; for(auto &w:wList)list.push_back(w); for(int i=start.getValue();i chosenVariables; for(int j=0;jterms.begin();j!=i2->terms.end();j++) p+=Term(Q.zHomomorphism(1),Monomial(r,j->first.exponent[i]*IntegerVector::standardVector(2,0)+dot(j->first.exponent,concatenation(IntegerVector(1),*k))*IntegerVector::standardVector(2,1))); newI.push_back(p); } debug << "NEW" << newI << "\n"; assert(0); PolyhedralFan::fullSpace(2) Fnew=PolyhedralFan::fullSpace(2); for(PolynomialSet::const_iterator i=newI.begin();i!=newI.end();i++) { Fnew=refinement(PolyhedralFan::normalFanOfNewtonPolytope(*i),F); } if(Fnew.conesBegin()->linealitySpace().dimension()==1) { IntegerVectorList toCheckNew=Fnew.getRays(); for(PolyhedralFan::coneIterator i=Fnew.begin();i!=Fnew.end();i++) if(i->dimension()==2) toCheckNew.push_back(i->getRelativeInteriorPoint()); IntegerVectorList toCheck; for(IntegerVector::const_iterator i=toCheckNew.begin();i!=toCheckNew.end();i++) toCheck.push_back(); } else { assert(0); } PolyhedralFan F(n); #endif // debug<<"COOONE"<<*k<exponents()<<"\n"; F.printWithIndices(&debug,FPF_default); PolyhedralFan t=PolyhedralFan::bergmanOfPrincipalIdeal(*i); t.printWithIndices(&debug,FPF_default); F=refinement(t,F); F.printWithIndices(&debug,FPF_default); } }*/ log2 debug<<"Done with polyhedral computations\n"; log2 debug<<"Intersection fan dim "<subvector(1,n).isZero()) candidates.push_back(*j); log2 debug<<"Number of candidates "<<(int)candidates.size()<<"\n"; if(candidates.size()==1) { ret.push_back(candidates.front()); if(earlyExit)return ret; } else { toCheck.splice(toCheck.end(),candidates); } assert(i==0); } else { stat_finiteLiftHard++; complicatedList.push_back(*k); } } log2 debug<<"Checking complicated list:\n"; log2 debug<supportAsZeroOneVector(); log2 debug<<"Support sum:"<=i)j2++; list chosenVariables; chosenVariables.push_back(i); chosenVariables.push_back(j2); IntegerVectorList A; #if 0 A.push_back(IntegerVector::allOnes(n)-IntegerVector::standardVector(n,i)-IntegerVector::standardVector(n,j2)); A.push_back(IntegerVector::allOnes(n)); MatrixTermOrder T(A); PolynomialSet J=I; debug<<"Doing elimination\n"; buchberger(&J,T,true); PolynomialRing newRing2(newRing.getField(),2); PolynomialSet P=J.polynomialRingIntersection(newRing2,&chosenVariables); #else A.push_back(IntegerVector::allOnes(n+1)-IntegerVector::standardVector(n+1,i)-IntegerVector::standardVector(n+1,j2)-IntegerVector::standardVector(n+1,n)); A.push_back(IntegerVector::allOnes(n+1)); MatrixTermOrder T(A); PolynomialRing newRing3=I.getRing().withVariablesAppended("H"); PolynomialSet J=I.homogenization(newRing3); log2 debug<<"Doing elimination\n"; buchberger(&J,T,true); J.changeNumberOfVariables(I.getRing()); PolynomialRing newRing2(newRing.getField(),2); PolynomialSet P=J.polynomialRingIntersection(newRing2,&chosenVariables); #endif additionalPolys.splice(additionalPolys.end(),J); log2 debug<<"Done eliminating\n"; log2 debug<generatorsOfLinealitySpace(); assert(l.size()==1); F.push_back(l.front()); F.push_back(-l.front()); // debug<<"LINgen"<0) { // debug<<"YES\n"; int LCM=(*k)[j]*(*l)[1]/gcdGFAN((*k)[j],(*l)[1]); int s1=LCM/(*k)[j]; int s2=LCM/(*l)[1]; if(s1<0)s1=-s1; if(s2<0)s2=-s2; // debug<<"YES\n"; IntegerVector v=s1*concatenation(concatenation(k->subvector(0,i),IntegerVector(1)),k->subvector(i,n-1))+s2*(*l)[0]*IntegerVector::standardVector(n,i); preCheck.push_back(v); } log2 debug<<"Combined:\n"<=i)j2++; list chosenVariables; chosenVariables.push_back(i); chosenVariables.push_back(j2); IntegerVectorList A; A.push_back(IntegerVector::allOnes(n)-IntegerVector::standardVector(n,i)-IntegerVector::standardVector(n,j2)); A.push_back(IntegerVector::allOnes(n)); MatrixTermOrder T(A); PolynomialSet J=I; debug<<"Doing elimination\n"; buchberger(&J,T,true); PolynomialRing newRing2(newRing.getField(),2); PolynomialSet P=J.polynomialRingIntersection(newRing2,&chosenVariables); debug<<"Done eliminating\n"; assert(P.size()==1); debug<<"Doing polyhedral computation\n"; // debug<<"PFRONT:"<generatorsOfLinealitySpace(); assert(l.size()==1); F.push_back(l.front()); F.push_back(-l.front()); // debug<<"LINgen"<0) { // debug<<"YES\n"; int LCM=(*k)[j]*(*l)[1]/gcdGFAN((*k)[j],(*l)[1]); int s1=LCM/(*k)[j]; int s2=LCM/(*l)[1]; if(s1<0)s1=-s1; if(s2<0)s2=-s2; // debug<<"YES\n"; IntegerVector v=s1*concatenation(concatenation(k->subvector(0,i),IntegerVector(1)),k->subvector(i,n-1))+s2*(*l)[0]*IntegerVector::standardVector(n,i); preCheck.push_back(v); } debug<<"Combined:\n"<>old; D(theCone); debug>>theCone; assert(0); }*/ IntegerVector lastFacetVector=ridgeVector; IntegerVectorList temp=old.faceContaining(ridgeVector).getEquations(); assert(temp.size()==1); IntegerVector lastFlipDirection=temp.front(); if(dotLong(lastFlipDirection,rayVector)<0)lastFlipDirection=-lastFlipDirection; // debug< link(ZVector const &ridgeVector)=0; virtual ZCone & refToPolyhedralCone()=0; /** * If there is no cone state data for the traverser, half of the changeCone() calls can be avoided. * That this is a valid of optimization for the ConeTraverser is indicated returning true in the following function. */ virtual bool hasNoState()const; }; class Target { public: virtual bool process(FanTraverser &traverser)=0; }; class FanBuilder : public Target { ZFan coneCollection; public: ZFan const &getFanRef(){return coneCollection;} FanBuilder(int n, SymmetryGroup const &sym); bool process(FanTraverser &Traverser); }; void traverse(FanTraverser &traverser, Target &target, SymmetryGroup const *sym=0); }; #endif gfan0.7/src/app_markpolynomialset.cpp0000644000175000017500000000204214656430617017447 0ustar andersanders#include "vektor.h" #include "printer.h" #include "parser.h" #include "gfanapplication.h" #include "minkowskisum.h" #include "newtonpolytope.h" #include "buchberger.h" #include "wallideal.h" #include "lp.h" class MarkPolynomialSetApplication : public GFanApplication { public: const char *helpText() { return "This program marks a set of polynomials with respect to the vector given at the end of the input, meaning that the largest terms are moved to the front. In case of a tie the lexicographic term order with $a>b>c...$ is used to break it.\n"; } MarkPolynomialSetApplication() { registerOptions(); } const char *name() { return "_markpolynomialset"; } int main() { FileParser P(Stdin); PolynomialSet g=P.parsePolynomialSetWithRing(); IntegerVector v=P.parseIntegerVector(); WeightTermOrder t(v); g.markAndScale(t); AsciiPrinter(Stdout).printPolynomialRing(g.getRing()); AsciiPrinter(Stdout).printPolynomialSet(g); return 0; } }; static MarkPolynomialSetApplication theApplication; gfan0.7/src/intsinpolytope.cpp0000644000175000017500000000533614656430617016146 0ustar andersanders#include "intsinpolytope.h" #include "latticeideal.h" #include "printer.h" #include "linalg.h" #include "field_rationals.h" static IntegerVectorList::const_iterator findImproving(IntegerVectorList const &b, IntegerVector const &x) { IntegerVectorList::const_iterator i=b.begin(); while(i!=b.end()) { if(i->divides(x))break; i++; } return i; } static int rek(IntegerVectorList const &b, IntegerVector &x, IntegerVectorList &output) { // fprintf(stdout,"rek\n"); // AsciiPrinter(Stdout).printVector(x); int ret=1; output.push_back(x); for(IntegerVectorList::const_iterator i=b.begin();i!=b.end();i++) { x+=*i; if(x.isNonNegative()) if(findImproving(b,x)==i)ret+=rek(b,x,output); x-=*i; } return ret; } bool solveIntegerProgramIneq(IntegerMatrix const &M, IntegerVector const &rightHandSide, IntegerVector &solution) { int d=M.getHeight(); int n=M.getWidth(); IntegerMatrix M2(d,n+d); for(int i=0;i(mr); if(p) { return std::string("STACKRESOURCE");//+std::to_string((mr)); } return std::string("UNKNOWN"); } gfan0.7/src/polyhedral.h0000644000175000017500000000000114656430617014636 0ustar andersanders gfan0.7/src/app_link.cpp0000644000175000017500000000513214656430617014635 0ustar andersanders#include "parser.h" #include "printer.h" #include "polynomial.h" #include "division.h" #include "lp.h" #include "gfanapplication.h" #include "polyhedralcone.h" #include "polyhedralfan.h" #include "symmetry.h" #include "polymakefile.h" class LinkApplication : public GFanApplication { // FieldOption theFieldOption; StringOption inputOption; SimpleOption optionSymmetry; SimpleOption optionConeIndices; SimpleOption optionNonMaximal; SimpleOption optionStar; public: const char *helpText() { return "This program takes a polyhedral fan and a vector and computes the link of the polyhedral fan around that vertex. The link will have lineality space dimension equal to the dimension of the relative open polyhedral cone of the original fan containing the vector.\n"; } LinkApplication(): inputOption("-i","Specify the name of the input file.","polymake.out"), optionSymmetry("--symmetry", "Reads in a fan stored with symmetry. The generators of the symmetry group must be given on the standard input.\n"), optionConeIndices("--coneIndices","Restrict the fan to a set of cones. The indices of the cones are given on the input."), optionNonMaximal("--nonMaximal","Tells the program that the cone indices are with respect to the non maximal cone list."), optionStar("--star","Computes the star instead. The star is defined as the smallest polyhedral fan containing all cones of the original fan containing the vector.") { registerOptions(); optionConeIndices.hide(); optionNonMaximal.hide(); } const char *name() { return "_fanlink"; } int main() { IntegerVector v=FileParser(Stdin).parseIntegerVector(); int n=v.size(); SymmetryGroup s(n); if(optionSymmetry.getValue()) { IntegerVectorList generators=FileParser(Stdin).parseIntegerVectorList(); s.computeClosure(generators); } PolyhedralFan f(n); if(optionConeIndices.getValue()) { IntegerVector temp=FileParser(Stdin).parseIntegerVector(); set coneIndices; for(int i=0;i static Matrix simplex(int n, mvtyp d) { Matrix ret(n,n+1); for(int i=0;i class SingleTropicalHomotopyTraverser{ class InequalityComparisonResult{//actual comparison functions were moved to the InequalityTable public: bool empty; int configurationIndex;//used for finding best int columnIndex;//used for finding best }; class InequalityTable //circuit table // This table has been moved inside the IntegersectionTraverser simply because it is used nowhere else and is specific to mixed cells in Cayley configurations. { /* All methods are marked to show if they can overflow without throwing/asserting. * Overflowing methods at the moment are: * replaceFirstOrSecond: subroutine calls may overflow (dotDivVector) * compareInequalities: only if target entries are too big * dotVector: only if target entries are too big * setChoicesFromEarlierHomotopy: only if tuple entries are too big */ std::vector > tuple; std::vector offsets; std::vector > choices; Matrix A;//one row for each potential inequality, to store entries with indices in chosen Vector tempA; Vector Abounds;// a negative bound for each row of A, bounding the absolute value of the rows; std::vector svec;//used locally int subconfigurationIndex; mvtyp denominator; int m; int k; bool isLegalIndex(int subconfigurationIndex, int columnIndex)const {// Cannot overflow return choices[subconfigurationIndex].first!=columnIndex && choices[subconfigurationIndex].second!=columnIndex; } mvtyp dotVector(int subconfigurationIndex, int columnIndex, Vector const &target, int onlyK=-1)const { // May overflow if entries of target are too big. //if onlyK!=-1 then only the onlyKth subconfiguration is considered mvtypDouble ret; if(onlyK!=-1) { if(onlyK==subconfigurationIndex) { int i=subconfigurationIndex; ret+=extendedMultiplication(A.UNCHECKEDACCESS(i,columnIndex+offsets[subconfigurationIndex]),target.UNCHECKEDACCESS((choices)[i].second+offsets[i])); ret-=extendedMultiplication(A.UNCHECKEDACCESS(i,columnIndex+offsets[subconfigurationIndex]),target.UNCHECKEDACCESS((choices)[i].first+offsets[i])); ret-=extendedMultiplication(denominator,target.UNCHECKEDACCESS((choices)[i].first+offsets[i]));// the multiplication can be merged with multiplication above except that that could cause and overflow. ret+=extendedMultiplication(denominator,target.UNCHECKEDACCESS(columnIndex+offsets[i])); return ret.castToSingle(); } else { int i=onlyK; if(target.UNCHECKEDACCESS((choices)[i].first+offsets[i]).isNonZero()) { ret+=extendedMultiplication(A.UNCHECKEDACCESS(i,columnIndex+offsets[subconfigurationIndex]),target.UNCHECKEDACCESS((choices)[i].second+offsets[i])); ret-=extendedMultiplication(A.UNCHECKEDACCESS(i,columnIndex+offsets[subconfigurationIndex]),target.UNCHECKEDACCESS((choices)[i].first+offsets[i])); } return ret.castToSingle(); } } for(int i=0;i const &target, int onlyK=-1) {// Cannot overflow int J=0; for(int i=0;ib]=a; v[b>a]=b; return 2; } int sort3uniquely(int *v, int a, int b, int c)const//a and b and c different {// Cannot overflow v[(a>b)+int(a>c)]=a; v[(b>a)+int(b>c)]=b; v[(c>a)+int(c>b)]=c; return 3; } int sort4uniquely(int *v, int a, int b, int c, int d)const// a and b different and different from c and d, but c may equal d {// Cannot overflow if(c!=d) { v[(a>b)+int(a>c)+int(a>d)]=a; v[(b>a)+int(b>c)+int(b>d)]=b; v[(c>a)+int(c>b)+int(c>d)]=c; v[(d>a)+int(d>b)+int(d>c)]=d; return 4; } else return sort3uniquely(v,a,b,c); } bool compareReverseLexicographicInverted(int i1, int j1, int i2, int j2, mvtyp s1, mvtyp s2)const//s1 and s2 are always negative {// cannot overflow for(int i=0;i0; } } int indices[4]; int F=choices[i].first; int S=choices[i].second; int toCheck; if(i1==i) if(i2==i) toCheck=sort4uniquely(indices,F,S,j1,j2); else toCheck=sort3uniquely(indices,F,S,j1); else if(i2==i) toCheck=sort3uniquely(indices,F,S,j2); else toCheck=sort2uniquely(indices,F,S); for(int J=0;J0) return true; else if(temp<0) return false; } } return false; } mvtyp getVolume() {// Cannot overflow return denominator; } void replaceFirstOrSecond(bool first, int subconfigurationIndex, int newIndex, Vector const &target)__attribute__ ((always_inline))//updates the inequality table according to replacing first or second by newIndex in the subconfigurationIndex'th configuration {// Cannot overflow int newIndex2=newIndex;for(int i=0;i const &target){replaceFirstOrSecond(true,subconfigurationIndex,newIndex,target);} void replaceSecond(int subconfigurationIndex, int newIndex, Vector const &target){replaceFirstOrSecond(false,subconfigurationIndex,newIndex,target);} InequalityTable(std::vector > const &tuple_, int subconfigurationIndex_): tempA(tuple_.size()+Flags::computeDotProductInMatrix), tuple(tuple_), choices(tuple_.size()), subconfigurationIndex(subconfigurationIndex_), offsets(tuple_.size()) {// Cannot overflow k=tuple.size(); m=0; for(int i=0;i(k+Flags::computeDotProductInMatrix,m); {int offset=0;for(int i=0;i(k+Flags::computeDotProductInMatrix); } void setChoicesInitially() {// Cannot overflow //THIS WILL ONLY WORK FOR THE STARTING CONFIGURATION //sets denominators,A and choices (these must have been initialized to the right sizes) for(int i=0;i (i+0,i+1); for(int i=0;ii+1) for(int ii=i;ii const &target, int onlyK=-1) {// Can only overflow if target entries are too big. Actually it seems that it is not this function that will overflow but dotVector. bool empty=true; int bestConfigurationIndex=-1; int bestColumnIndex=-1; mvtyp targetDotBest=0; for(int i=0;i::const_RowRef Ak=const_cast&>(A)[k]; gfan::Matrix::const_RowRef Ak=const_cast&>(A)[k]; int offsetsi=offsets[i]; int tupleiwidth=tuple[i].getWidth(); if(onlyK!=-1)if(i!=onlyK)continue; for(int j=0;j0); } void setChoicesFromEarlierHomotopy(InequalityTable const &parent, mvtyp degreeScaling, Vector const &target) { // Overflows may happen, but only if the tuple entries are too big. // Notice that the code below has overflow checks everywhere, except in the loop marked with a comment. //sets denominators,A and choices (these must have been initialized to the right sizes //columns have been added to configuration this->subconfigurationIndex //for that reason we need to introduce new circuits. Old circuits are preserved. //chioices are "relative" so no update is needed. // std::cerr<=0) A.UNCHECKEDACCESS(subconfigurationIndex,offsetNew+j).msubWithOverflowChecking(tuple[i].UNCHECKEDACCESS(b,j),denominator); } for(int a=0;a > choices; Vector target; bool useFirstChanged; bool useSecondChanged; std::vector stack; int eliminatedK; int eliminatedKOffset; std::vector > tuple; std::vector offsets; int m; InequalityComparisonResult result; InequalityTable inequalityTable; void constructInequalityTableFromParent(InequalityTable const &parentTable, mvtyp degreeScaling) { inequalityTable.setChoicesFromEarlierHomotopy(parentTable, degreeScaling, target); } void constructInequalityTableInitially(mvtyp degreeScaling) { std::vector > tempTuple;for(int i=0;i(tuple.size(),1)); InequalityTable tempTable(tempTuple,-1); tempTable.setChoicesInitially(); constructInequalityTableFromParent(tempTable,degreeScaling); } SingleTropicalHomotopyTraverser(std::vector > const &tuple_, int m_, std::vector > const &choices_, Vector const &target_, int eliminatedK_): choices(choices_), target(target_), eliminatedK(eliminatedK_), tuple(tuple_), m(m_), inequalityTable(tuple,eliminatedK), offsets(tuple_.size()) { eliminatedKOffset=0;for(int i=0;i class TropicalRegenerationTraverser{ // The following class is an attempt to separate homotopy data from the traversal logic. class Data{ static mvtyp degree(Matrix const &m)//assumes entries of m are non-negative { mvtyp ret=0; for(int i=0;i > targets; std::vector > tuple; std::vector > > tuples; Vector degrees; bool isFiniteIndex(int level, int index) { // std::cerr<<"level"<=tuple.size()) //we are past the process of regeneration return true; // std::cerr<<"Index"<=tuple[0].getHeight()+1; } std::vector > produceIthTuple(int i) { int n=tuple[0].getHeight(); std::vector > ret; for(int j=0;j(n,degree(tuple[j])),tuple[j])); if(j>i)ret.push_back(simplex(n,1)); } return ret; } Data(std::vector > const &tuple_, Vector const *target=0):tuple(tuple_) { int n=tuple[0].getHeight(); {//adjusting to positive orthant for(int i=0;i targ; for(int j=0;j::allOnes(n+1),Vector(tuple[i].getWidth()))); else targ=concatenation(targ,Vector(tuples[i][j].getWidth())); } targets.push_back(targ); } if(target) targets.push_back(*target); }; std::vector > firstIntersection() { std::vector > ret; for(int i=0;i(i+0,i+1)); return ret; } void castToNextLevel(std::vector > const &choices, int i, int S, std::vector > &ret) { assert(ret.size()==choices.size()); for(int j=0;j=S); assert(ret[i].second>=S); ret[i].first-=S; ret[i].second-=S; } }; static int cayleyConfigurationWidth(std::vector > const &tuple) { int m2=0; for(int i=0;i MySingleTropicalHomotopyTraverser; std::vector traversers; Data fullData; int level; bool deadEnd; bool isLevelLeaf; bool isSolutionVertex; std::vector isLevelLeafStack; TropicalRegenerationTraverser(std::vector > const &tuple_, Vector const *target=0): fullData(tuple_,target),counter(0),depth(0) { assert(tuple_.size()); for(int i=0;i class SpecializedRTraverser: public Traverser { public: // typedef TropicalRegenerationTraverser MyTropicalRegenerationTraverser; // MyTropicalRegenerationTraverser T; TropicalRegenerationTraverser T; int numberOfExpensiveSteps; SpecializedRTraverser(std::vector > const &tuple_, Vector const *target=0): numberOfExpensiveSteps(0), T(tuple_,target) //Constructor my throw if input is too big. { numberOfExpensiveSteps++; T.findOutgoingAndProcess(false); } int getEdgeCountNext( void ) { if(!aborting) { try{ // std::cerr<<"N children"< const &rays; IntegerVector const &permutation; Pair(vector const &rays_, int rayIndex_, IntegerVector const & permutation_): rays(rays_), rayIndex(rayIndex_), permutation(permutation_) { } bool operator<(Pair const &b)const { return SymmetryGroup::compose(permutation,rays[rayIndex]) rays; void print() { for(set::const_iterator i=rays.begin();i!=rays.end();i++) { fprintf(Stderr,"--:%i ",i->rayIndex); AsciiPrinter(Stderr).printVector((i->permutation)); fprintf(Stderr,"\n"); } } }; static list computeFacets(SymmetricComplex::Cone const &theCone, IntegerMatrix const &rays, IntegerVectorList const &facetCandidates, SymmetricComplex const &theComplex/*, int linealityDim*/) { set ret; for(IntegerVectorList::const_iterator i=facetCandidates.begin();i!=facetCandidates.end();i++) { set indices; bool notAll=false; for(vector::const_iterator j=theCone.indices.begin();j!=theCone.indices.end();j++) if(dotLong(rays[*j],*i)==0) indices.insert(*j); else notAll=true; SymmetricComplex::Cone temp(indices,theCone.dimension-1,0,false,theComplex); /* temp.multiplicity=0; temp.dimension=theCone.dimension-1; temp.setIgnoreSymmetry(true); */ if(notAll)ret.insert(temp); } // fprintf(Stderr,"HEJ!!!!\n"); list ret2; for(set::const_iterator i=ret.begin();i!=ret.end();i++) { bool isMaximal=true; /* if(i->indices.size()+linealityDimdimension)//#3 isMaximal=false; else*/ for(set::const_iterator j=ret.begin();j!=ret.end();j++) if(i!=j && i->isSubsetOf(*j)) { isMaximal=false; break; } if(isMaximal) { SymmetricComplex::Cone temp(i->indexSet(),i->dimension,i->multiplicity,true,theComplex); // temp.setIgnoreSymmetry(false); ret2.push_back(temp); } } return ret2; } SymmetricComplex dualMinkowskiMixed(PolynomialSet const &g, SymmetryGroup const &sym, PolyhedralFan const &cones) { /* The set of rays of the dual fan is the vertices of the Minkowski sum after centering around zero. We only generate them up to symmetry. */ int n=cones.getAmbientDimension(); int nMaxOrbits=0; for(PolyhedralFan::coneIterator i=cones.conesBegin();i!=cones.conesEnd();i++)nMaxOrbits++; vector rays(nMaxOrbits); FieldVector translationVector(Q,n); for(PolynomialSet::const_iterator i=g.begin();i!=g.end();i++) translationVector+=Q.zHomomorphism(i->numberOfTerms()).inverse()*integerVectorToFieldVector(i->exponentsSum(),Q); { int j=0; for(PolyhedralFan::coneIterator i=cones.conesBegin();i!=cones.conesEnd();i++,j++) { FieldVector temp=integerVectorToFieldVector(i->getRelativeInteriorPoint(),Q); temp+=(Q.zHomomorphism(-1)*translationVector); rays[j]=temp.primitive(); } } fprintf(Stderr,"The new rays:\n"); for(int i=0;i newCones(primaryRays.size()); IntegerVectorList::const_iterator K=primaryRays.begin(); for(int k=0;kcontains(v)) { newCones[k].rays.insert(MyCone::Pair(rays,j,*l)); } } } } fprintf(Stderr,"Facets with their vertices:\n"); for(int k=0;k > allRaysIndices(nMaxOrbits); { int j=0; for(PolyhedralFan::coneIterator i=cones.conesBegin();i!=cones.conesEnd();i++,j++) { int k=0; for(IntegerVectorList::const_iterator l=allPrimaryRays.begin();l!=allPrimaryRays.end();l++,k++) if(i->contains(*l))allRaysIndices[j].insert(k); } } fprintf(Stderr,"Facets with their vertices (as indices):\n"); for(int k=0;k::const_iterator j=allRaysIndices[k].begin();j!=allRaysIndices[k].end();j++) fprintf(Stderr,"%i ",*j); fprintf(Stderr,"\n\n"); // newCones[k].print(); } /* We prepare the complex to return. */ SymmetricComplex ret(n,allPrimaryRays,sym); /* For every dual cone we need to compute facet normal. This is done by cddlib. Afterward we use these facet normals to add the faces of the dual cone to our collection of cones (pre-complex) - each time checking that the corresponding face is mixed. */ fprintf(Stderr,"Adding mixed faces for cones:\n"); for(int k=0;k::const_iterator i=newCones[k].rays.begin();i!=newCones[k].rays.end();i++) { a.push_back(SymmetryGroup::compose(i->permutation,rays[i->rayIndex])); } AsciiPrinter(Stderr).printVectorList(a); IntegerVectorList empty; PolyhedralCone C(a,empty,n); IntegerVectorList facetCandidates=C.extremeRays(); fprintf(Stderr,"Cone %i\nFacetNormals:\n",k); AsciiPrinter(Stderr).printVectorList(facetCandidates); /* list clist; { set indices; for(int j=0;j facets=computeFacets(theCone,rays,facetCandidates,c); clist.splice(clist.end(),facets); } clist.pop_front(); } */ } /* For every cone in the final "pre-complex" we translate it into a cone in the primary */ return ret; } gfan0.7/src/gfanapplication.cpp0000644000175000017500000001605014656430617016200 0ustar andersanders#include "gfanapplication.h" #include #include #include "field.h" #include "field_rationals.h" #include "field_zmodpz.h" #include "division.h" #include "printer.h" #include "symmetry.h" #include "log.h" #include "linalg.h" #include "polymakefile.h" GFanApplication::FieldOption::FieldOption(): IntegerOption("--mod","Set the field to Z / pZ. The value must be a prime number p between 2 and 32749.\n") { } void GFanApplication::FieldOption::onOptionsParsed() { if(getValue()) { fprintf(Stderr,"CANNOT CHANGE FIELD\n"); assert(0); // Field::setField(new FieldZModPZ(getValue())); // Field::setField(Field::find("Zmod2Z")); } } GFanApplication::LogLevelOption::LogLevelOption(): IntegerOption("--log","Set the logging level.\n") { hide(); } GFanApplication::XmlOption::XmlOption(): SimpleOption("--xml","Switch to XML polyhedral data format output.\n") { hide(); } GFanApplication::StdinFileOption::StdinFileOption(): StringOption("--stdin","Set a file to be read as stdin.\n","") { hide(); } void GFanApplication::StdinFileOption::onOptionsParsed() { if(strlen(getValue())>0) { FILE *err=freopen(getValue(),"r",stdin); assert(err); } } GFanApplication::StdoutFileOption::StdoutFileOption(): StringOption("--stdout","Set a file to be read as stdin.\n","") { hide(); } void GFanApplication::StdoutFileOption::onOptionsParsed() { if(strlen(getValue())>0) { FILE *err=freopen(getValue(),"w",stdout); assert(err); } } void GFanApplication::LogLevelOption::onOptionsParsed() { if(getValue()==9) { Printer::setAssertOnPrinting(true); } else if(getValue()) { setLogLevel(getValue()); } } void GFanApplication::XmlOption::onOptionsParsed() { if(getValue())PolymakeFile::forceXml(); } void GFanApplication::assertSymmetriesMatch(IntegerVectorList const &g, class PolynomialSet &markedGroebnerBasis, FieldMatrix const *torusActions, bool asPolynomials) { PolynomialSet markedGroebnerBasis2=markedGroebnerBasis; markedGroebnerBasis2.sort_(); int n=markedGroebnerBasis2.numberOfVariablesInRing(); int I=0; for(IntegerVectorList::const_iterator i=g.begin();i!=g.end();i++) { if(i->size()!=n) { fprintf(Stderr,"PERMUTATION "); AsciiPrinter(Stderr).printVector(*i); fprintf(Stderr," HAS WRONG LENGTH.\n"); assert(0); } if(!SymmetryGroup::isPermutation(*i)) { fprintf(Stderr,"VECTOR "); AsciiPrinter(Stderr).printVector(*i); fprintf(Stderr," DOES NOT REPRESENT A PERMUTATION.\n"); assert(0); } //log0 AsciiPrinter(Stderr).printPolynomialSet(markedGroebnerBasis); PolynomialSet b2=SymmetryGroup::permutePolynomialSet(markedGroebnerBasis2,*i); //log0 AsciiPrinter(Stderr).printPolynomialSet(b2); if(torusActions)b2=b2.torusAct((*torusActions)[I]); //log0 AsciiPrinter(Stderr).printPolynomialSet(b2); if(!asPolynomials) { if(!areIdealsEqual(markedGroebnerBasis2,b2)) { fprintf(Stderr,"PERMUTATION "); AsciiPrinter(Stderr).printVector(*i); fprintf(Stderr," DOES NOT KEEP THE IDEAL FIXED.\n"); log1 fprintf(Stderr,"Original ideal:\n"); log1 AsciiPrinter(Stderr).printPolynomialSet(markedGroebnerBasis2); log1 fprintf(Stderr,"Permuted ideal:\n"); log1 AsciiPrinter(Stderr).printPolynomialSet(b2); log1 { for(PolynomialSet::const_iterator i=b2.begin();i!=b2.end();i++) { Polynomial remainder=division(*i,markedGroebnerBasis2,LexicographicTermOrder()); log1 AsciiPrinter(Stderr).printString("Remainder: "); log1 AsciiPrinter(Stderr).printPolynomial(remainder); log1 AsciiPrinter(Stderr).printNewLine(); if(!remainder.isZero()) { log1 AsciiPrinter(Stderr).printString("Polynomial not in ideal: "); log1 AsciiPrinter(Stderr).printPolynomial(*i); log1 AsciiPrinter(Stderr).printNewLine(); break; } } } assert(0); } } else { b2.markAndScale(LexicographicTermOrder()); markedGroebnerBasis2.markAndScale(LexicographicTermOrder()); b2.sort_(); if(!(markedGroebnerBasis2==b2)) { fprintf(Stderr,"PERMUTATION "); AsciiPrinter(Stderr).printVector(*i); fprintf(Stderr," DOES NOT KEEP POLYNOMIAL SET FIXED.\n"); log1 { AsciiPrinter(Stderr).printPolynomialSet(markedGroebnerBasis2); AsciiPrinter(Stderr).printPolynomialSet(b2); PolynomialSet::const_iterator j=markedGroebnerBasis2.begin(); for(PolynomialSet::const_iterator i=b2.begin();i!=b2.end();i++) { if(!(*j-*i).isZero()) { fprintf(Stderr,"Polynomials are different:\n"); AsciiPrinter(Stderr).printPolynomial(*i); fprintf(Stderr,"\n"); AsciiPrinter(Stderr).printPolynomial(*j); fprintf(Stderr,"\nDifference:\n"); AsciiPrinter(Stderr).printPolynomial(*i-*j); fprintf(Stderr,"\n"); break; } j++; } } assert(0); } } I++; } } void GFanApplication::onExit() { log1 { fprintf(Stderr,"Number of living FieldImplementation objects:%i\n",FieldImplementation::getNumberOfLivingFieldImplementations()); fprintf(Stderr,"Number of living FieldElementImplementation objects:%i\n",FieldElementImplementation::getNumberOfLivingFieldElementImplementations()); } } #include "gmp.h" #include "versioninfo.h" #include "lp.h" #include "groebnerengine.h" class VersionApplication : public Application { bool includeInDefaultInstallation() { return true; } const char *helpText() { return "This program writes out version information of the Gfan installation.\n"; } const char *name() { return "_version"; } int main() { cout<<"Gfan version:\n"<